Shared types in GraphQL Federation (@shareable)

Hi again,

I’ve done some digging, and the error you’re seeing is due to something like this occurring multiple times:

schema {
    query: Query
}

The federation should be successful even without the @extends directive. The problem is that the query is somehow being declared multiple times. If your subgraphs appear exactly as you have posted, I am not sure how or why this is occurring.

David