# GraphQL ## Structure Write GraphQL queries or mutations. Arguments can be added as query parameters: ```graphql query GetUser($id: ID!) { user(id: $id) { id name email } } ``` ## Variables Variables are passed as script arguments and automatically bound to the query: ```graphql query SearchProducts($query: String!, $limit: Int = 10) { products(search: $query, first: $limit) { edges { node { id name price } } } } ``` ## Mutations ```graphql mutation CreateUser($input: CreateUserInput!) { createUser(input: $input) { id name createdAt } } ```