Skip to content

Commit 41d578c

Browse files
authored
Live publish
2 parents e7fa1fa + e62be39 commit 41d578c

File tree

7 files changed

+457
-19
lines changed

7 files changed

+457
-19
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ To create a new entity record you must identify the valid property names and typ
7373

7474
## Create with data returned
7575

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

7878
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.
7979

@@ -347,4 +347,5 @@ More information: [Access documents faster using storage partitions](azure-stora
347347
[Impersonate another user using the Web API](impersonate-another-user-web-api.md)<br />
348348
[Perform conditional operations using the Web API](perform-conditional-operations-using-web-api.md)<br />
349349

350-
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
350+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
351+

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

powerapps-docs/maker/TOC.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2182,8 +2182,12 @@
21822182
href: ../teams/issue-reporting.md
21832183
- name: Milestones
21842184
href: ../teams/milestones.md
2185-
- name: Perspectives (Preview)
2186-
href: ../teams/perspectives.md
2185+
- name: Perspectives
2186+
items:
2187+
- name: Perspectives (Preview)
2188+
href: ../teams/perspectives.md
2189+
- name: Understand Perspectives (Preview) sample app architecture
2190+
href: ../teams/perspectives-architecture.md
21872191
- name: Profile+ (Preview)
21882192
href: ../teams/profile-app.md
21892193
- name: Customize sample apps
Loading
Loading

0 commit comments

Comments
 (0)