An open API service indexing awesome lists of open source software.

https://github.com/tofazzaltopu/spring-boot-spring-data-graphql-jpa

GraphQL implementation in Spring Boot
https://github.com/tofazzaltopu/spring-boot-spring-data-graphql-jpa

graphql hibernate java jpa spring-boot

Last synced: about 2 months ago
JSON representation

GraphQL implementation in Spring Boot

Awesome Lists containing this project

README

        

# spring-boot-graphQL
GraphQL is a relatively new concept from Facebook that is billed as an alternative to REST for Web APIs

#Query to insert new person
mutation {
createPerson(name: "tina Moni", mobile: "34534", email: "[email protected]")
{
id,
name,
email
}
}

# Query to getAllPerson
query {
getAllPerson
{
id,
name,
email
}
}