Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladimir-dejanovic/dive-into-graphql-in-java
Code for my talk GraphQL in the Java World Let’s Go for a Dive
https://github.com/vladimir-dejanovic/dive-into-graphql-in-java
conference-talk graphql java tutorial-code
Last synced: 17 days ago
JSON representation
Code for my talk GraphQL in the Java World Let’s Go for a Dive
- Host: GitHub
- URL: https://github.com/vladimir-dejanovic/dive-into-graphql-in-java
- Owner: vladimir-dejanovic
- License: gpl-3.0
- Created: 2018-10-19T17:39:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-16T21:07:18.000Z (about 2 years ago)
- Last Synced: 2024-10-18T18:49:58.968Z (26 days ago)
- Topics: conference-talk, graphql, java, tutorial-code
- Language: Java
- Size: 393 KB
- Stars: 47
- Watchers: 2
- Forks: 32
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GraphQL in the Java World Let’s Go for a Dive
This is code example used in my deep dive talk/tutorial session.
In this talk GraphQL is demonstrated by using Java examples. Both Schema Definiton Language and Query languge of GraphQL are coverd.
Sections of code are organized via branches.
For demo purposes I am using H2 in memory database.
In order to connect to local instance of H2 once app is deployed hit urlhttp://localhost:8080/h2-console/
Make sure that URL is set to jdbc:h2:mem:testdb
## Code examples throught Java Code
### init
### data-1
### data-2
### data-2-core
### data-3
### data-4
### mutation-1
### mutation-2
### link-1
### subscription-1
### final