First, using a POST request, then add graphQL URL [url]http://localhost:8080/graphql to the app. Then, add a Header with Content-Type as application/json.
Adding a POST request to the GraphQL API
For each of the request, enter into "Body" in Postman and then "Send" the request.
findDogBreeds
{
"query": "{findAllDogs { id breed } }"
}findDogBreedByID
{
"query":"{findAllDogs { id breed } }"
}findAllDogNames
{
"query":"{findAllDogs { id name } }"
}updateDogName
{
"query":"mutation {updateDogName(newName:\"Ghost\", id:4) { id name breed } }"
}deleteDogBreed
{
"query":"mutation {deleteDogBreed(breed:\"Pomeranian\")}"
}



