
static.index.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of example Show documentation
Show all versions of example Show documentation
A commons library for Kotlin
The newest version!
Welcome to the Kwery Demo
Filtering
Let's try some basics
- Find all films: /api/films
- Find 'G' rated films: /api/films?rating=G
- Actors with a last name of Davis: /api/actors?lastName=Davis
Logging
Now let's enable logging to see what's going on in the server logs
- Log full statements: /api/films?log=statements
- Log a request summary (default): /api/films?log=summary
- Disable logging: /api/films?log=none
Graph fetching
Graph fetching allows the client specify what relationships to fetch on a per request basis.
Check out the server logs to verify that only a single query per relationship is used
- Find 'G' rated films including the actors: /api/films?rating=G&fetch=actors
- Multiple levels (Actors with Films with Languages): /api/actors?fetch=films(language,originalLanguage)
See https://github.com/andrewoma/kwery/tree/master/example
for more information
© 2015 - 2025 Weber Informatics LLC | Privacy Policy