mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
27 lines
988 B
JavaScript
27 lines
988 B
JavaScript
import { GraphQLError } from "../../error/GraphQLError.mjs";
|
|
import { Kind } from "../../language/kinds.mjs";
|
|
import { isExecutableDefinitionNode } from "../../language/predicates.mjs";
|
|
|
|
/**
|
|
* 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: function Document(node) {
|
|
for (var _i2 = 0, _node$definitions2 = node.definitions; _i2 < _node$definitions2.length; _i2++) {
|
|
var definition = _node$definitions2[_i2];
|
|
|
|
if (!isExecutableDefinitionNode(definition)) {
|
|
var defName = definition.kind === Kind.SCHEMA_DEFINITION || definition.kind === Kind.SCHEMA_EXTENSION ? 'schema' : '"' + definition.name.value + '"';
|
|
context.reportError(new GraphQLError("The ".concat(defName, " definition is not executable."), definition));
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
};
|
|
}
|