Ecosyste.ms: Awesome
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 18 hours ago
JSON representation
GraphQL implementation in Spring Boot
- Host: GitHub
- URL: https://github.com/tofazzaltopu/spring-boot-spring-data-graphql-jpa
- Owner: TofazzalTopu
- Created: 2021-08-31T16:20:31.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T17:00:34.000Z (about 3 years ago)
- Last Synced: 2023-10-22T08:24:14.856Z (about 1 year ago)
- Topics: graphql, hibernate, java, jpa, spring-boot
- Language: Java
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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,
}
}# Query to getAllPerson
query {
getAllPerson
{
id,
name,
}
}