What problem does it solve? Writing and testing GraphQL queries inside the Windmill platform requires knowing the correct script structure, variable binding conventions, and which CLI command to use for previewing versus deploying. This Skill provides the exact patterns and command guidance so queries work correctly on the first attempt. ## Core Features & Use Cases - GraphQL Query Authoring: Write queries with typed variables that are automatically bound from script arguments. - Mutation Support: Create mutations with input objects for creating or updating data through a GraphQL API. - CLI Workflow Guidance: Choose correctly between wmill script preview for local iteration, wmill script run for deployed scripts, and wmill sync push only for explicit deploys. - Use Case: You need to fetch user data from a GraphQL API inside a Windmill workflow. The Skill produces a parameterized query like query GetUser($id: ID!) and tells you to validate it with wmill script preview before any deployment. ## Quick Start Write a Windmill GraphQL script that queries a user by ID and preview it locally with sample arguments.