{ "data": {}, "errors": [ { "message": "Failed to run query.", "extensions": { "errors": [ { "code": "MAX_QUERIED_CONTENT_TYPE_LIMIT_EXCEEDED", "message": "Max concurrent content types per query for your organization is '3', but the query requested '4'.", "details": { "hint": "You can query upto 3 concurrent content types, in a single GraphQL query." } } ] } } ] }
When executing the following query (with 4 fragments) we get a weird errors which indicates some kind of limitation related to our organization.
I dont see why a query like this cant be executed. I've tried looking for configuration but couldnt find anything related.
Help would be appreciated
query page( $locale: String!) { banners { ...Banner1 ...Banner2 ...Banner3 ...Banner4 } }
{ "data": {}, "errors": [ { "message": "Failed to run query.", "extensions": { "errors": [ { "code": "MAX_QUERIED_CONTENT_TYPE_LIMIT_EXCEEDED", "message": "Max concurrent content types per query for your organization is '3', but the query requested '4'.", "details": { "hint": "You can query upto 3 concurrent content types, in a single GraphQL query." } } ] } } ] }