fix: pr feedback

This commit is contained in:
Ciaran Hannigan 2026-03-24 14:30:58 -04:00
parent f439b7ad31
commit 4a361d8eb1
No known key found for this signature in database
2 changed files with 8 additions and 2 deletions

View File

@ -255,7 +255,14 @@ const GET_ACCOUNTS = gql`
uiapi {
query {
Account(first: 10) {
edges { node { Id Name @optional { value } } }
edges {
node {
Id
Name @optional {
value
}
}
}
}
}
}

View File

@ -55,7 +55,6 @@ When you need more than 200 records per page or more than 4,000 total records, s
- **`first` must be 2002000** when `upperBound` is set. Values below 200 are invalid.
- **`upperBound`** declares the estimated total record count and enables extended pagination.
- **Child pagination coupling** — If the parent uses upperBound pagination, the child must also use upperBound. You cannot paginate parent and child simultaneously; if a child uses `after`, the parent must be limited to a single result (`first: 1`).
```graphql
# Standard pagination