Skip to content

Commit 8faf994

Browse files
committed
web api update 10 to 15
1 parent 64b6f5b commit 8faf994

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

powerapps-docs/developer/data-platform/webapi/retrieve-related-entities-query.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Retrieve related table records with a query (Microsoft Dataverse)| Microsoft Docs"
33
description: "Read how you can retrieve related table records by expanding the navigation properties."
4-
ms.date: 04/06/2022
4+
ms.date: 06/03/2022
55
author: divka78
66
ms.author: dikamath
77
ms.reviewer: jdaly
@@ -28,7 +28,7 @@ Use the `$expand` system query option in the navigation properties to control wh
2828
If you include only the name of the navigation property, you’ll receive all the properties for related records. You can limit the properties returned for related records using the `$select` system query option in parentheses after the navigation property name. Use this for both single-valued and collection-valued navigation properties.
2929

3030
> [!NOTE]
31-
> - You are limited to no more than 10 `$expand` options in a query. This is to protect performance. Each `$expand` options creates a join that can impact performance.
31+
> - You are limited to no more than 15 `$expand` options in a query. This is to protect performance. Each `$expand` options creates a join that can impact performance.
3232
> - To retrieve related entities for an entity instance, see [Retrieve related tables for a table by expanding navigation properties](retrieve-entity-using-web-api.md#bkmk_expandRelated).
3333
> - Queries which expand collection-valued navigation properties may return cached data for those properties that doesn’t reflect recent changes. It is recommended to use `If-None-Match` header with value `null` to override browser caching. See [HTTP Headers](compose-http-requests-handle-errors.md#bkmk_headers) for more details.
3434
>
@@ -130,7 +130,7 @@ OData-Version: 4.0
130130
You can expand single-valued navigation properties to multiple levels by nesting an `$expand` option within another `$expand` option.
131131

132132
> [!NOTE]
133-
> There is no limit on the depth of nested `$expand` options, but the combined limit of 10 total `$expand` options in a query still applies.
133+
> There is no limit on the depth of nested `$expand` options, but the combined limit of 15 total `$expand` options in a query still applies.
134134
135135
The following query returns `task` records and expands the related `contact`, the `account` related to the `contact`, and finally to the `systemuser` who created the `account` record.
136136

0 commit comments

Comments
 (0)