mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 14:22:33 +01:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import { GraphQLDate, GraphQLDateTime, GraphQLTime } from 'graphql-iso-date';
|
|
|
|
export const generalResolvers = {
|
|
Date: GraphQLDate,
|
|
Time: GraphQLTime,
|
|
DateTime: GraphQLDateTime,
|
|
};
|