graphql
Version:
A Query Language and Runtime which can target any service.
77 lines (68 loc) • 2.17 kB
Flow
/**
* Copyright (c) 2018-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
*/
import type { SDLValidationContext } from '../ValidationContext';
import { GraphQLError } from '../../error/GraphQLError';
import type { ASTVisitor } from '../../language/visitor';
export function duplicateOperationTypeMessage(operation: string): string {
return `There can be only one ${operation} type in schema.`;
}
export function existedOperationTypeMessage(operation: string): string {
return (
`Type for ${operation} already defined in the schema. ` +
'It cannot be redefined.'
);
}
/**
* Unique operation types
*
* A GraphQL document is only valid if it has only one type per operation.
*/
export function UniqueOperationTypes(
context: SDLValidationContext,
): ASTVisitor {
const schema = context.getSchema();
const definedOperationTypes = Object.create(null);
const existingOperationTypes = schema
? {
query: schema.getQueryType(),
mutation: schema.getMutationType(),
subscription: schema.getSubscriptionType(),
}
: {};
return {
SchemaDefinition: checkOperationTypes,
SchemaExtension: checkOperationTypes,
};
function checkOperationTypes(node) {
if (node.operationTypes) {
for (const operationType of node.operationTypes || []) {
const operation = operationType.operation;
const alreadyDefinedOperationType = definedOperationTypes[operation];
if (existingOperationTypes[operation]) {
context.reportError(
new GraphQLError(
existedOperationTypeMessage(operation),
operationType,
),
);
} else if (alreadyDefinedOperationType) {
context.reportError(
new GraphQLError(duplicateOperationTypeMessage(operation), [
alreadyDefinedOperationType,
operationType,
]),
);
} else {
definedOperationTypes[operation] = operationType;
}
}
}
return false;
}
}