How to use the @apollo/federation/dist/types.EntityType.name function in @apollo/federation

To help you get started, we’ve selected a few @apollo/federation examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github 0xR / graphql-transform-federation / src / transform-federation.ts View on Github external
type => {
      if (isUnionType(type) && type.name === EntityType.name) {
        return new GraphQLUnionType({
          ...EntityType.toConfig(),
          types: Object.values(entityTypes),
        });
      }
      return undefined;
    },
  );