Skip to content

mehkey/spring-boot-graphql

Repository files navigation

Spring Boot Graphql for Books API

Java CI with Gradle

GraphQL API

type Query {
    bookById(id: ID): Book
}

type Book {
    id: ID
    name: String
    pageCount: Int
    author: Author
}

type Author {
    id: ID
    firstName: String
    lastName: String
}

localhost:8080/graphqli

ScreenShot

Resource