This application demonstrates how to use GraphQL with the DGS (Domain Graph Service) framework in a Maven project to fetch a list of shows. The main functionality allows querying shows with an optional title filter.
- Fetch a list of shows
- Filter shows by title
- Structured response with show details
- Spring boot
- GraphQL DGS
type Query {
shows(titleFilter: String): [Show]
}