From 090e0f5c79b37a428b131b1add463e223989ee97 Mon Sep 17 00:00:00 2001 From: Jose David Rodriguez Velasco Date: Thu, 2 Apr 2026 09:15:56 -0400 Subject: [PATCH] fix: add summary table for workflow steps --- skills/using-ui-bundle-salesforce-data/SKILL.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/skills/using-ui-bundle-salesforce-data/SKILL.md b/skills/using-ui-bundle-salesforce-data/SKILL.md index 57cfec5..9e091c2 100644 --- a/skills/using-ui-bundle-salesforce-data/SKILL.md +++ b/skills/using-ui-bundle-salesforce-data/SKILL.md @@ -92,6 +92,14 @@ These rules exist because Salesforce GraphQL has platform-specific behaviors tha ## GraphQL Workflow +| Step | Action | Key output | +|------|--------|------------| +| 1 | Acquire schema | `schema.graphql` exists | +| 2 | Look up entities | Field names, types, relationships confirmed | +| 3 | Generate query | `.graphql` file or inline `gql` tag | +| 4 | Generate types | `graphql-operations-types.ts` | +| 5 | Validate | Lint + codegen pass | + ### Step 1: Acquire Schema The `schema.graphql` file (265K+ lines) is the source of truth. **Never open or parse it directly** — no cat, less, head, tail, editors, or programmatic parsers.