From 4a361d8eb14e7d68edc6757d1e594d699f11ed2b Mon Sep 17 00:00:00 2001 From: Ciaran Hannigan Date: Tue, 24 Mar 2026 14:30:58 -0400 Subject: [PATCH] fix: pr feedback --- skills/using-webapp-salesforce-data/SKILL.md | 9 ++++++++- .../docs/read-query-generation.md | 1 - 2 files changed, 8 insertions(+), 2 deletions(-) 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