mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-23 06:35:05 +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,
|
|
};
|