UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

8 lines 270 B
import { GraphQLError } from "./GraphQLError.mjs"; export function syntaxError(source, position, description) { return new GraphQLError(`Syntax Error: ${description}`, { source, positions: [position], }); } //# sourceMappingURL=syntaxError.js.map