GraphQL interface for the RESTful API http://petstore.swagger.io/#/pet
mutation {
createPet(pet: {
name: "ziggy",
status: sold,
}) {
success,
pet {
id,
name,
status
}
}
}
query {
pet(id: 1576646314737) {
id,
name,
status
}
}