UNPKG

3 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; /**
8 * Copyright (c) 2015-present, Facebook, Inc.
9 *
10 * This source code is licensed under the MIT license found in the
11 * LICENSE file in the root directory of this source tree.
12 *
13 *
14 */
15
16exports.formatError = formatError;
17
18var _invariant = require('../jsutils/invariant');
19
20var _invariant2 = _interopRequireDefault(_invariant);
21
22function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
23
24/**
25 * Given a GraphQLError, format it according to the rules described by the
26 * Response Format, Errors section of the GraphQL Specification.
27 */
28function formatError(error) {
29 !error ? (0, _invariant2.default)(0, 'Received null or undefined error.') : void 0;
30 return _extends({}, error.extensions, {
31 message: error.message || 'An unknown error occurred.',
32 locations: error.locations,
33 path: error.path
34 });
35}
\No newline at end of file