diff --git a/skills/using-webapp-salesforce-data/SKILL.md b/skills/using-webapp-salesforce-data/SKILL.md index 3ae3458..ab5e5f2 100644 --- a/skills/using-webapp-salesforce-data/SKILL.md +++ b/skills/using-webapp-salesforce-data/SKILL.md @@ -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 + } + } + } } } } diff --git a/skills/using-webapp-salesforce-data/docs/read-query-generation.md b/skills/using-webapp-salesforce-data/docs/read-query-generation.md index 4b1c137..5ba0aad 100644 --- a/skills/using-webapp-salesforce-data/docs/read-query-generation.md +++ b/skills/using-webapp-salesforce-data/docs/read-query-generation.md @@ -55,7 +55,6 @@ When you need more than 200 records per page or more than 4,000 total records, s - **`first` must be 200–2000** 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