type Query { products(languageCode: LanguageCode): [Product] product(id: Int!, languageCode: LanguageCode): Product } type Mutation { "Create a new Product" createProduct(input: CreateProductInput): Product "Update an existing Product" updateProduct(input: UpdateProductInput): Product }