Skip to content

Commit e62be39

Browse files
authored
Fixes in terminology
1 parent afce5f6 commit e62be39

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

powerapps-docs/developer/data-platform/webapi/query-data-web-api.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ OData-Version: 4.0
7777

7878
<a name="bkmk_limits"></a>
7979

80-
## Limits on number of tables returned
80+
## Limits on number of rows (records) returned
8181

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.
8383

8484
> [!NOTE]
8585
> 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
8888

8989
### Use `$top` query option
9090

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.
9292

9393
```http
9494
GET [Organization URI]/api/data/v9.1/accounts?$select=name,revenue&$top=3
@@ -317,9 +317,9 @@ OData-MaxVersion: 4.0
317317
OData-Version: 4.0
318318
```
319319

320-
### Filter parent records based on values of child records
320+
### Filter parent rows (records) based on values of child records
321321

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:
323323

324324
- any of their linked opportunity records' budget greater than or equal to 300, and
325325
- the opportunity records' have no description, or
@@ -341,7 +341,7 @@ OData-Version: 4.0
341341

342342
<a name="BKMK_FilterNavProperties"></a>
343343

344-
### Filter records based on single-valued navigation property
344+
### Filter rows (records) based on single-valued navigation property
345345

346346
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).
347347

@@ -787,9 +787,9 @@ OData-Version: 4.0
787787

788788
<a bkmk="bkmk_retrieverelatedentitysingleandcollectionnavprop"></a>
789789

790-
### 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
791791

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.
793793

794794
In this example, we are retrieving the contact and tasks assigned to the top 3 accounts.
795795

0 commit comments

Comments
 (0)