You can build your own queries using a GraphQL Explorer and enter your endpoint to limit the data to exactly what you need.
Each entity has a plural version and a singular version. When querying for a single record response (e.g. account), you will need to supply the id for the entity. When querying for a list of responses (e.g. accounts), you may add filters using the ‘where’ clause.
Below are some sample queries you can use to gather information from the Celeste contracts.
Examples
This query fetches aggredated data from Celest and obtains the first 5 CourtConfigs and CourtTerms information
{
courtConfigs(first: 5) {
id
currentTerm
termDuration
feeToken {
id
}
}
courtTerms(first: 5) {
id
startTime
randomnessBN
randomness
}
}