web-dev-qa-db-ja.com

graphqlの型定義の日付とJSON

GraphqlスキーマでフィールドをDateまたはJSONとして定義することは可能ですか?

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

実際にサーバーは次のようなエラーを返しています:

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

そして、JSONについても同じエラーが...

何か案が ?

10
taboubim

カスタムスカラーをご覧ください: 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;
    },
  }),
19