Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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 18 hours 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
}
}