You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/webapi/create-entity-web-api.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ To create a new entity record you must identify the valid property names and typ
73
73
74
74
## Create with data returned
75
75
76
-
You can compose your `POST` request so that data from the created record will be returned with a status of `201 (Created)`. To get his result, you must use the `return=representation` preference in the request headers.
76
+
You can compose your `POST` request so that data from the created record will be returned with a status of `201 (Created)`. To get this result, you must use the `return=representation` preference in the request headers.
77
77
78
78
To control which properties are returned, append the `$select` query option to the URL to the entity set. You may also use `$expand` to return related entities.
79
79
@@ -347,4 +347,5 @@ More information: [Access documents faster using storage partitions](azure-stora
347
347
[Impersonate another user using the Web API](impersonate-another-user-web-api.md)<br />
348
348
[Perform conditional operations using the Web API](perform-conditional-operations-using-web-api.md)<br />
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/webapi/query-data-web-api.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -77,9 +77,9 @@ OData-Version: 4.0
77
77
78
78
<aname="bkmk_limits"></a>
79
79
80
-
## Limits on number of tables returned
80
+
## Limits on number of rows (records) returned
81
81
82
-
Unless you specify a smaller page size, a maximum of 5000 entities will be returned for each request. If there are more entities that match the query filter criteria, a `@odata.nextLink` property will be returned with the results. Use the value of the `@odata.nextLink` property with a new `GET` request to return the next page of entity data.
82
+
Unless you specify a smaller page size, a maximum of 5000 rows will be returned for each request. If there are more rows that match the query filter criteria, a `@odata.nextLink` property will be returned with the results. Use the value of the `@odata.nextLink` property with a new `GET` request to return the next page of rows.
83
83
84
84
> [!NOTE]
85
85
> Queries on entity (table) definitions aren’t limited or paged. More information:[Query table definitions using the Web API](query-metadata-web-api.md)
@@ -88,7 +88,7 @@ OData-Version: 4.0
88
88
89
89
### Use `$top` query option
90
90
91
-
You can limit the number of results returned by using the `$top` system query option. The following example will return just the first three account entities.
91
+
You can limit the number of results returned by using the `$top` system query option. The following example will return just the first three account rows.
92
92
93
93
```http
94
94
GET [Organization URI]/api/data/v9.1/accounts?$select=name,revenue&$top=3
@@ -317,9 +317,9 @@ OData-MaxVersion: 4.0
317
317
OData-Version: 4.0
318
318
```
319
319
320
-
### Filter parent records based on values of child records
320
+
### Filter parent rows (records) based on values of child records
321
321
322
-
The example given below shows how you can use the [/any operator](#bkmk_anyoperator) to retrieve all the account records which have:
322
+
The example given below shows how you can use the [/any operator](#bkmk_anyoperator) to retrieve all the account records that have:
323
323
324
324
- any of their linked opportunity records' budget greater than or equal to 300, and
325
325
- the opportunity records' have no description, or
@@ -341,7 +341,7 @@ OData-Version: 4.0
341
341
342
342
<aname="BKMK_FilterNavProperties"></a>
343
343
344
-
### Filter records based on single-valued navigation property
344
+
### Filter rows (records) based on single-valued navigation property
345
345
346
346
Navigation properties let you access data related to the current entity. *Single-valued* navigation properties correspond to Lookup attributes that support many-to-one relationships and allow setting a reference to another entity. More information: [Navigation properties](web-api-types-operations.md#bkmk_navprops).
### Retrieve related tables by expanding both single-valued and collection-valued navigation properties
790
+
### Retrieve related rows (records) by expanding both single-valued and collection-valued navigation properties
791
791
792
-
The following example demonstrates how you can expand related entities for entity sets using both single and collection-valued navigation properties. As explained earlier, expanding on collection-valued navigation properties to retrieve related entities for entity sets returns an `@odata.nextLink` property for the related entities. You should use the value of the `@odata.nextLink` property with a new `GET` request to return the required data.
792
+
The following example demonstrates how you can expand related rows (records) for entity sets using both single and collection-valued navigation properties. As explained earlier, expanding on collection-valued navigation properties to retrieve related entities for entity sets returns an `@odata.nextLink` property for the related entities. You should use the value of the `@odata.nextLink` property with a new `GET` request to return the required data.
793
793
794
794
In this example, we are retrieving the contact and tasks assigned to the top 3 accounts.
0 commit comments