This application is based on offical Getting Started from the DGS project
Use the following command to run the application
/gradlew bootRun
When it's running open http://localhost:8080/graphiql
in your browser. This will open a GraphiQL client you can use
for test
Here are some example queries you can use for testing GraphQL capabilities
{
shows {
title
releaseYear
}
}
{
shows(titleFilter:"Stranger") {
title
releaseYear
}
}