Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/graphql-java/graphql-java-examples
https://github.com/graphql-java/graphql-java-examples
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/graphql-java/graphql-java-examples
- Owner: graphql-java
- License: mit
- Created: 2018-09-12T22:35:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T23:14:02.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T22:37:45.875Z (about 2 months ago)
- Language: Java
- Size: 971 KB
- Stars: 100
- Watchers: 6
- Forks: 59
- Open Issues: 18
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# graphql-java-examples
The following are a series of examples of graphql-java in action. They are intended as inspiration on how you could use
graphql-java in your next project.## http example
The http example is a simple Spring Boot application that serves the classic StarWars schema.
## defer example
The defer example is a simple Spring Boot application that demonstrates more advanced graphql
performance by allowing a client to split the result into the data it needs immediately followed
by the data it can `defer` to later.## Spring Boot integration example
This shows how to integrate GraphQL Java with Spring Boot.