@apollo/federation
Version:
Apollo Federation Utilities
89 lines (72 loc) • 2.36 kB
text/typescript
import gql from 'graphql-tag';
import deepFreeze from 'deep-freeze';
import { stripExternalFieldsFromTypeDefs } from '../utils';
import { astSerializer } from 'apollo-federation-integration-testsuite';
expect.addSnapshotSerializer(astSerializer);
describe('Composition utility functions', () => {
describe('stripExternalFieldsFromTypeDefs', () => {
it('returns a new DocumentNode with @external fields removed as well as information about the removed fields', () => {
const typeDefs = gql`
type Query {
product: Product
}
extend type Product {
sku: String
}
type Mutation {
updateProduct: Product
}
extend interface Account {
id: ID!
}
`;
const {
typeDefsWithoutExternalFields,
strippedFields,
} = stripExternalFieldsFromTypeDefs(typeDefs, 'serviceA');
expect(typeDefsWithoutExternalFields).toMatchInlineSnapshot(`
type Query {
product: Product
}
extend type Product
type Mutation {
updateProduct: Product
}
extend interface Account
`);
expect(strippedFields).toMatchInlineSnapshot(`
Array [
Object {
"field": sku: String ,
"parentTypeName": "Product",
"serviceName": "serviceA",
},
Object {
"field": id: ID! ,
"parentTypeName": "Account",
"serviceName": "serviceA",
},
]
`);
});
it("doesn't mutate the input DocumentNode", () => {
const typeDefs = gql`
type Query {
product: Product
}
extend type Product {
sku: String
}
type Mutation {
updateProduct: Product
}
`;
deepFreeze(typeDefs);
// Assert that mutation does, in fact, throw
expect(() => ((typeDefs as any).blah = [])).toThrow();
expect(() =>
stripExternalFieldsFromTypeDefs(typeDefs, 'serviceA'),
).not.toThrow();
});
});
});