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 running the following code I get errors relating to complexity, where I am at the maximum but it still rejects, showing I am at the maximum complexity but not over, and it also shows as having a complexity of 0 at the bottom above action records query TournamentsByVideogame { tournaments(query: { perPage: 1000 page:1 sortBy: "startAt desc" filter: { past: true videogameIds: [ 1386 ] } }) { nodes { name id slug } } }
{ "errors": [ { "message": "Your query complexity is too high. A maximum of 1000 objects may be returned by each request. (actual: 1000)", "extensions": { "category": "validation" }, "locations": [ { "line": 2, "column": 7 } ], "path": [ "tournaments" ], "type": "validation", "fields": null, "fieldErrors": [] } ], "data": { "tournaments": null }, "extensions": { "cacheControl": { "version": 1, "hints": [ { "path": [ "tournaments" ], "maxAge": 600, "scope": "PRIVATE" } ] }, "queryComplexity": 0 }, "actionRecords": [] }
The text was updated successfully, but these errors were encountered:
When running the following code I get errors relating to complexity, where I am at the maximum but it still rejects, showing I am at the maximum complexity but not over, and it also shows as having a complexity of 0 at the bottom above action records
query TournamentsByVideogame { tournaments(query: { perPage: 1000 page:1 sortBy: "startAt desc" filter: { past: true videogameIds: [ 1386 ] } }) { nodes { name id slug } } }
{ "errors": [ { "message": "Your query complexity is too high. A maximum of 1000 objects may be returned by each request. (actual: 1000)", "extensions": { "category": "validation" }, "locations": [ { "line": 2, "column": 7 } ], "path": [ "tournaments" ], "type": "validation", "fields": null, "fieldErrors": [] } ], "data": { "tournaments": null }, "extensions": { "cacheControl": { "version": 1, "hints": [ { "path": [ "tournaments" ], "maxAge": 600, "scope": "PRIVATE" } ] }, "queryComplexity": 0 }, "actionRecords": [] }
The text was updated successfully, but these errors were encountered: