- 
                Notifications
    
You must be signed in to change notification settings  - Fork 54
 
Apollo Federation support #483
Description
Description
With the new release of Apollo Federation (https://blog.apollographql.com/apollo-federation-f260cf525d21), new keywords and directives can be used in the graphql schema declaration.
More information on all that Apollo Federation allows can be read in their official documentation (https://www.apollographql.com/docs/apollo-server/federation/introduction/)
Out team has managed to figure out a workaround for generating resolvers with the @key directive added to the schema, but at the moment, graphqlgen cannot generate resolvers for types that use the extend keyword.
A typical error that is generated when trying to run graphqlgen with a type that uses the extend keyword would look like the following.
"Error occurred while reading schema: Error: Field company: Couldn't find type in any of the schemas."
This feature request aims to include Apollo Federation support with regards to generating resolvers.