thunderhub/api/helpers/defaultProps.ts
2020-05-13 07:15:10 +02:00

6 lines
182 B
TypeScript

import { GraphQLNonNull } from 'graphql';
import { AuthType } from '../schemas/types/GeneralType';
export const defaultParams = {
auth: { type: new GraphQLNonNull(AuthType) },
};