GraphQL starter project.
We mimic the GraphQL tutorial available here
type Query {
bookById(id: ID): Book
}
type Book {
id: ID
name: String
pageCount: Int
author: Author
}
type Author {
id: ID
firstName: String
lastName: String
}mvn jooby:run
Open a browser a type: http://localhost:8080/graphql
- Read the GraphQL documentation
- Join the channel