Exposing directives on the supergraph (Apollo Federation)
By default (most)
schema directives are hidden from the supergraph schema .
If you need to expose a directive to the supergraph, you can use the compose
parameter on the @strawberry.federation.schema_directives
decorator, hereβs an
example:
This will create a cacheControl
directive and it will also use
@composeDirective
on the schema to make sure it is included in the supergraph schema.