mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-06 21:28:15 +02:00
Make query support pagination by supplying the paginated key.
In the following toy example, the paginated key is:
["levels", "cars"]
```graphql
query vehicle_store($location: ID!) {
levels {
cars {
pageInfo {
hasNextPage
endCursor
}
...
}
}
}
```
Signed-off-by: Guilherme Gallo <guilherme.gallo@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25940>
|
||
|---|---|---|
| .. | ||
| test | ||
| .gitignore | ||
| ci_run_n_monitor.py | ||
| ci_run_n_monitor.sh | ||
| download_gl_schema.sh | ||
| gitlab_common.py | ||
| gitlab_gql.py | ||
| gitlab_gql.sh | ||
| job_details.gql | ||
| marge_queue.py | ||
| marge_queue.sh | ||
| pipeline_details.gql | ||
| requirements.txt | ||
| structured_logger.py | ||
| update_traces_checksum.py | ||
| update_traces_checksum.sh | ||