web-dev-qa-db-fra.com

Date et Json dans la définition de type pour graphql

Est-il possible de définir un champ comme Date ou JSON dans mon schéma graphql?

type Individual {
    id: Int
    name: String
    birthDate: Date
    token: JSON
}

en fait le serveur me renvoie une erreur disant:

Type "Date" not found in document.
at ASTDefinitionBuilder._resolveType (****node_modules\graphql\utilities\buildASTSchema.js:134:11)

Et même erreur pour JSON ...

Une idée ?

10
taboubim

Jetez un œil aux scalaires personnalisés: https://www.apollographql.com/docs/graphql-tools/scalars.html

créez un nouveau scalaire dans votre schéma:

scalar Date

type MyType {
   created: Date
}

et créez un nouveau résolveur:

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;
    },
  }),
19
Andreas Köberle