@jokio/graphql
Version:
High level, pre-configured, GraphQL Server
70 lines (69 loc) • 2.52 kB
JavaScript
;
// @flow
/**
* Copyright (c) 2017, Dirk-Jan Rutten
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
var graphql_1 = require("graphql");
var language_1 = require("graphql/language");
var utils_1 = require("../utils");
/**
* An RFC 3339 compliant time scalar.
*
* Input:
* This scalar takes an RFC 3339 time string as input and
* parses it to a javascript Date (with a year-month-day relative
* to the current day).
*
* Output:
* This scalar serializes javascript Dates and
* RFC 3339 time strings to RFC 3339 UTC time strings.
*/
var config = {
name: 'Time',
description: 'A time string at UTC, such as 10:15:30Z, compliant with ' +
'the `full-time` format outlined in section 5.6 of the RFC 3339' +
'profile of the ISO 8601 standard for representation of dates and ' +
'times using the Gregorian calendar.',
serialize: function (value) {
if (value instanceof Date) {
if (utils_1.validateJSDate(value)) {
return utils_1.serializeTime(value);
}
throw new TypeError('Time cannot represent an invalid Date instance');
}
else if (typeof value === 'string' || value instanceof String) {
if (utils_1.validateTime(value)) {
return utils_1.serializeTimeString(value);
}
throw new TypeError("Time cannot represent an invalid time-string " + value + ".");
}
else {
throw new TypeError('Time cannot be serialized from a non string, ' +
'or non Date type ' + JSON.stringify(value));
}
},
parseValue: function (value) {
if (!(typeof value === 'string' || value instanceof String)) {
throw new TypeError("Time cannot represent non string type " + JSON.stringify(value));
}
if (utils_1.validateTime(value)) {
return utils_1.parseTime(value);
}
throw new TypeError("Time cannot represent an invalid time-string " + value + ".");
},
parseLiteral: function (ast) {
if (ast.kind === language_1.Kind.STRING) {
if (utils_1.validateTime(ast.value)) {
return utils_1.parseTime(ast.value);
}
}
return null;
}
};
exports.default = new graphql_1.GraphQLScalarType(config);