Дата и Json в определении типа для graphql
Можно ли в моей схеме graphql определить поле как Date или JSON ?
type Individual {
id: Int
name: String
birthDate: Date
token: JSON
}
На самом деле сервер возвращает мне ошибку, говоря:
Type "Date" not found in document.
at ASTDefinitionBuilder._resolveType (****node_modulesgraphqlutilitiesbuildASTSchema.js:134:11)
И та же ошибка для JSON...
Есть идеи ?
1 ответ:
Взгляните на пользовательские скаляры: https://www.apollographql.com/docs/graphql-tools/scalars.html
Создайте новый скаляр в своей схеме:
scalar Date type MyType { created: Date }
И создать новый решатель:
import { GraphQLScalarType } from 'graphql'; import { Kind } from 'graphql/language'; const resolverMap = { Date: new GraphQLScalarType({ name: 'Date', description: 'Date custom scalar type', parseValue(value) { return new Date(value); // value from the client }, serialize(value) { return value.getTime(); // value sent to the client }, parseLiteral(ast) { if (ast.kind === Kind.INT) { return parseInt(ast.value, 10); // ast value is always in string format } return null; }, }),