# http://localhost:8080/ query { products(id: $PRODUCT_ID) { name } } query { products(id: $PRODUCT_ID) { name image } } variables { "update": { "name": "Hellooooo", "description": "World", "created_at": "now", "updated_at": "now" }, "user": 123 } mutation { products(update: $update, where: {id: {eq: 134}}) { id name description } } variables { "update": { "name": "Helloo", "description": "World \u003c\u003e" }, "user": 123 } mutation { products(id: 5, update: $update) { id name description } } variables {} { me { id email } } variables { "update": { "name": "Hellooooo", "description": "World" }, "user": 123 } mutation { products(update: $update, where: {id: {eq: 134}}) { id name description } } query { me { id full_name } } variables {} query { customers { id email payments { customer_id amount billing_details } } }