What problem does it solve? Writing Shopify GraphQL queries that respect rate limits, query cost budgets, pagination rules, and API versioning is error-prone, and mistakes lead to throttled requests, over-cost queries, or broken mutations. This Skill enforces correct patterns for every Shopify Admin and Storefront API operation. ## Core Features & Use Cases - Query Cost & Rate Limit Management: Calculates query costs, reads the extensions.cost throttle status, and implements exponential backoff for THROTTLED responses. - Full Resource Coverage: Provides ready-to-use queries and mutations for products, orders, customers, collections, inventory, metafields, metaobjects, discounts, and webhook subscriptions. - Bulk Operations & Pagination: Supplies bulk operation patterns for large dataset exports and cursor-based pagination helpers capped at the 250-record limit. - Use Case: When building a Shopify app that syncs inventory across locations, use this Skill to generate a compare-and-set inventorySetQuantities mutation that prevents race conditions between concurrent writers. ## Quick Start Ask the assistant to write a Shopify GraphQL mutation that creates a product with variants and publishes it to a sales channel using API version 2026-01.