Download
Example
graphql?query={product(id:1){id,title}}
{
user(id:3){
id,
name,
email
}
},
mutation{
createUser(name: "hello", email: "hello@gmail.com", password: "123456"){
name,
email,
password
},
updateUser(id: "1", name: "hello1", email: "price11.shanie@example.com"){
id,
name
} ,
deleteUser(id:11){
name
}
}
|