Download
Example
graphql?query={product(id:1){id,title}}
 {
    user(id:3){
        id,
        name,
        email
    }
},
mutation{
    createUser(name: "hello", email: "[email protected]", password: "123456"){
        name,
        email,
        password
    },
    updateUser(id: "1", name: "hello1", email: "[email protected]"){
        id,
        name
    } ,
    deleteUser(id:11){
        name
    }
}
  |