Open http://localhost:8080/graphql in GraphQL Playground
(or one of your preference)
mutation {
createBook(
bookName: "Java in Action Panda"
pages: 2998
category: COMEDY
authorName: "Me :)"
age: 25
)
}
query{
getBook(id:"id returned in the creation above"){
name
pages
author{
name
}
category
}
}
Feel free to Clone or Fork this project if you need.