Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 680 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 680 Bytes

spring-dgs-demo

This application is based on offical Getting Started from the DGS project

Run it

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

Sample queries

Here are some example queries you can use for testing GraphQL capabilities

Show all shows

{
    shows {
        title
        releaseYear
    }
}

Show shows filtered by title

{
    shows(titleFilter:"Stranger") {
        title
        releaseYear
    }
}