https://github.com/graphql-java/graphql-java-examples
https://github.com/graphql-java/graphql-java-examples
Last synced: about 2 months 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T23:14:02.000Z (over 2 years ago)
- Last Synced: 2025-04-19T17:14:44.750Z (2 months ago)
- Language: Java
- Size: 971 KB
- Stars: 99
- Watchers: 5
- Forks: 58
- 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.