This project is a simple example of how to use GraphQL with Spring Boot. It uses the GraphQL Java library to create a GraphQL server.
To run the project, execute the following command:
./gradlew bootRun
After running the project, you can access the GraphiQL interface at the following URL:
http://localhost:8080/graphiql
You can use the following queries:
query GetBookStores {
bookStores {
id
name
books {
bookStoreId
id
title
}
}
}