# http://localhost:8080/ 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": "Hellooooo", "description": "World !!!!!" }, "user": 123 } mutation { products(id: 5, update: $update) { id name description } } variables { "id": 5 } { products(id: $ID) { id name description } } variables { "update": { "name": "Hellooooo", "description": "World" }, "user": 123 } mutation { products(update: $update, where: {id: {eq: 134}}) { id name description } } query { me { id full_name } } query { customers { id email payments { customer_id amount billing_details } } } query { products(id: $PRODUCT_ID) { name } } query { products(id: $PRODUCT_ID) { name image } }