graphql-dev
Installation
SKILL.md
GraphQL Development for Saleor
Before writing code
Fetch live docs:
- Web-search
site:docs.saleor.io api-referencefor the current Saleor GraphQL schema and API reference - Web-search
site:the-guild.dev graphql-codegenfor GraphQL Code Generator configuration and plugins - Web-search
site:graphql.org learnfor GraphQL specification fundamentals - Web-search
saleor GraphQL TypedDocumentNode urqlfor typed client patterns - Fetch
https://docs.saleor.io/docs/developer/api-conventionsfor Saleor-specific GraphQL conventions
GraphQL Fundamentals
| Operation | Purpose | Saleor Example |
|---|---|---|
| Query | Read data | Fetch products, orders, categories |
| Mutation | Write data | Create checkout, update product, complete order |
| Subscription | Real-time events | Webhook subscription payloads |