An example of a simple GraphQL query to see all data within a particular WebApp in your site:
query {
records(
per_page: 20
page: 1
filter: {
table: {
value: "webapp_1"
}
}
){
total_entries
results {
id
properties
}
}
}
Within the above you can change:
per_page: 20
to change how many items load within the resultspage: 1
to paginate through those pages, so page 2 will show items 21-40value: webapp_1
change the1
to match the ID of your webapp, this can be found within the URL in Siteglide Admin