Replies: 1 comment 3 replies
-
Do you have a field with the same name on Subscription type in different subgraphs? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I have several graphql subgraphs that I'd like to compose into a single supergraph. All of these subgraphs currently define several subscriptions in a root-level Subscription type. When I try to compose these using graphql-mesh, I get the following error:
Fields on root level subscription object cannot be marked as shareable
. When I try to filter out either the root Subscription type and/or all the fields contained within, the same error occurs. When I try to prefix all fields using a transform the same error shows up. I don't need/use any of the subscriptions in the subgraphs being composed. What's the correct way to compose multiple subgraphs with subscriptions defined?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions