You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I'm querying in backend from thegraph, the results are only available in 5,500 items even if they're controlled by skip and take params.
Here is the query that I'm using. query MyQuery($pageSize: Int!, $skip: Int!, $timestamp: Int!) { objects( orderBy: timestamp orderDirection: desc first: $pageSize skip: $skip where: { timestamp_gt: $timestamp } ) { blockNumber id timestamp transactionHash } }
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
When I'm querying in backend from thegraph, the results are only available in 5,500 items even if they're controlled by skip and take params.
Here is the query that I'm using.
query MyQuery($pageSize: Int!, $skip: Int!, $timestamp: Int!) { objects( orderBy: timestamp orderDirection: desc first: $pageSize skip: $skip where: { timestamp_gt: $timestamp } ) { blockNumber id timestamp transactionHash } }
Beta Was this translation helpful? Give feedback.
All reactions