apollographql / router

A configurable, high-performance routing runtime for Apollo Federation 🚀
https://www.apollographql.com/docs/router/
Other
798 stars 267 forks source link

Max concurrent content types per query for your organization; self hosted apollo router; non enterprise #3389

Closed rickbijkerk closed 1 year ago

rickbijkerk commented 1 year ago

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." } } ] } } ] }

rickbijkerk commented 1 year ago

nvm not a apollo router issue