Skip to content

Commit 800af89

Browse files
authored
Merge pull request #114954 from DCtheGeek/dmc-arg-pagesize
Clarify First and results limits
2 parents f47ff41 + f3a48ca commit 800af89

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

articles/governance/resource-graph/concepts/work-with-data.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ The control that is _most restrictive_ will win. For example, if your query uses
4444
would be equal to **First**. Likewise, if **top** or **limit** is smaller than **First**, the
4545
record set returned would be the smaller value configured by **top** or **limit**.
4646

47-
**First** currently has a maximum allowed value of _5000_.
47+
**First** currently has a maximum allowed value of _5000_, which it achieves by
48+
[paging results](#paging-results) _1000_ records at a time.
49+
50+
> [!IMPORTANT]
51+
> When **First** is configured to be greater than _1000_ records, the query must **project** the
52+
> **id** field in order for pagination to work. If it's missing from the query, the response won't
53+
> get [paged](#paging-results) and the results are limited to _1000_ records.
4854
4955
## Skipping records
5056

0 commit comments

Comments
 (0)