I am creating a federated Graphql API with Apollo Router, I have a couple of types and directives that I want to share between multiple of my subgraphs, such as an authentication directive or a shared type for pagination. Ideally I want to just have these shared in my supergraph and let all of the services use them, but from what I’ve found, I need to have a service backing them it can’t just be a type.
Does anyone have any recommendations about how to set this up ?
Thank you