UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

156 lines (126 loc) 5.65 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isDirective = isDirective; exports.isSpecifiedDirective = isSpecifiedDirective; exports.specifiedDirectives = exports.GraphQLDeprecatedDirective = exports.DEFAULT_DEPRECATION_REASON = exports.GraphQLSkipDirective = exports.GraphQLIncludeDirective = exports.GraphQLDirective = void 0; var _definition = require("./definition"); var _scalars = require("./scalars"); var _defineToStringTag = _interopRequireDefault(require("../jsutils/defineToStringTag")); var _defineToJSON = _interopRequireDefault(require("../jsutils/defineToJSON")); var _instanceOf = _interopRequireDefault(require("../jsutils/instanceOf")); var _invariant = _interopRequireDefault(require("../jsutils/invariant")); var _directiveLocation = require("../language/directiveLocation"); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } // eslint-disable-next-line no-redeclare function isDirective(directive) { return (0, _instanceOf.default)(directive, GraphQLDirective); } /** * Directives are used by the GraphQL runtime as a way of modifying execution * behavior. Type system creators will usually not create these directly. */ var GraphQLDirective = /*#__PURE__*/ function () { function GraphQLDirective(config) { _defineProperty(this, "name", void 0); _defineProperty(this, "description", void 0); _defineProperty(this, "locations", void 0); _defineProperty(this, "args", void 0); _defineProperty(this, "astNode", void 0); this.name = config.name; this.description = config.description; this.locations = config.locations; this.astNode = config.astNode; !config.name ? (0, _invariant.default)(0, 'Directive must be named.') : void 0; !Array.isArray(config.locations) ? (0, _invariant.default)(0, 'Must provide locations for directive.') : void 0; var args = config.args; if (!args) { this.args = []; } else { !!Array.isArray(args) ? (0, _invariant.default)(0, "@".concat(config.name, " args must be an object with argument names as keys.")) : void 0; this.args = Object.keys(args).map(function (argName) { var arg = args[argName]; return { name: argName, description: arg.description === undefined ? null : arg.description, type: arg.type, defaultValue: arg.defaultValue, astNode: arg.astNode }; }); } } var _proto = GraphQLDirective.prototype; _proto.toString = function toString() { return '@' + this.name; }; return GraphQLDirective; }(); // Conditionally apply `[Symbol.toStringTag]` if `Symbol`s are supported exports.GraphQLDirective = GraphQLDirective; (0, _defineToStringTag.default)(GraphQLDirective); (0, _defineToJSON.default)(GraphQLDirective); /** * Used to conditionally include fields or fragments. */ var GraphQLIncludeDirective = new GraphQLDirective({ name: 'include', description: 'Directs the executor to include this field or fragment only when ' + 'the `if` argument is true.', locations: [_directiveLocation.DirectiveLocation.FIELD, _directiveLocation.DirectiveLocation.FRAGMENT_SPREAD, _directiveLocation.DirectiveLocation.INLINE_FRAGMENT], args: { if: { type: (0, _definition.GraphQLNonNull)(_scalars.GraphQLBoolean), description: 'Included when true.' } } }); /** * Used to conditionally skip (exclude) fields or fragments. */ exports.GraphQLIncludeDirective = GraphQLIncludeDirective; var GraphQLSkipDirective = new GraphQLDirective({ name: 'skip', description: 'Directs the executor to skip this field or fragment when the `if` ' + 'argument is true.', locations: [_directiveLocation.DirectiveLocation.FIELD, _directiveLocation.DirectiveLocation.FRAGMENT_SPREAD, _directiveLocation.DirectiveLocation.INLINE_FRAGMENT], args: { if: { type: (0, _definition.GraphQLNonNull)(_scalars.GraphQLBoolean), description: 'Skipped when true.' } } }); /** * Constant string used for default reason for a deprecation. */ exports.GraphQLSkipDirective = GraphQLSkipDirective; var DEFAULT_DEPRECATION_REASON = 'No longer supported'; /** * Used to declare element of a GraphQL schema as deprecated. */ exports.DEFAULT_DEPRECATION_REASON = DEFAULT_DEPRECATION_REASON; var GraphQLDeprecatedDirective = new GraphQLDirective({ name: 'deprecated', description: 'Marks an element of a GraphQL schema as no longer supported.', locations: [_directiveLocation.DirectiveLocation.FIELD_DEFINITION, _directiveLocation.DirectiveLocation.ENUM_VALUE], args: { reason: { type: _scalars.GraphQLString, description: 'Explains why this element was deprecated, usually also including a ' + 'suggestion for how to access supported similar data. Formatted using ' + 'the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).', defaultValue: DEFAULT_DEPRECATION_REASON } } }); /** * The full list of specified directives. */ exports.GraphQLDeprecatedDirective = GraphQLDeprecatedDirective; var specifiedDirectives = [GraphQLIncludeDirective, GraphQLSkipDirective, GraphQLDeprecatedDirective]; exports.specifiedDirectives = specifiedDirectives; function isSpecifiedDirective(directive) { return specifiedDirectives.some(function (specifiedDirective) { return specifiedDirective.name === directive.name; }); }