@apollo/gateway
Version:
11 lines • 307 B
TypeScript
import { GraphQLSchemaExtensions } from 'graphql';
interface ApolloGatewayExtensions {
version?: string;
}
export interface ApolloGraphQLSchemaExtensions extends GraphQLSchemaExtensions {
apollo?: {
gateway?: ApolloGatewayExtensions;
};
}
export {};
//# sourceMappingURL=graphql.d.ts.map