Skip to content

floriandorau/spring-dgs-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages