mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
28 lines
961 B
TypeScript
28 lines
961 B
TypeScript
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/validation/rules/ExecutableDefinitionsRule.js
|
|
|
|
|
|
import { GraphQLError } from '../../error/GraphQLError.js';
|
|
import { Kind } from '../../language/kinds.js';
|
|
import { isExecutableDefinitionNode } from '../../language/predicates.js';
|
|
|
|
/**
|
|
* Executable definitions
|
|
*
|
|
* A GraphQL document is only valid for execution if all definitions are either
|
|
* operation or fragment definitions.
|
|
*/
|
|
export function ExecutableDefinitionsRule(context) {
|
|
return {
|
|
Document(node) {
|
|
for (const definition of node.definitions) {
|
|
if (!isExecutableDefinitionNode(definition)) {
|
|
const defName = definition.kind === Kind.SCHEMA_DEFINITION || definition.kind === Kind.SCHEMA_EXTENSION ? 'schema' : '"' + definition.name.value + '"';
|
|
context.reportError(new GraphQLError(`The ${defName} definition is not executable.`, definition));
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
};
|
|
} |