mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-23 06:35:05 +01:00
6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
import { GraphQLNonNull } from 'graphql';
|
|
import { AuthType } from '../schemas/types/GeneralType';
|
|
|
|
export const defaultParams = {
|
|
auth: { type: new GraphQLNonNull(AuthType) },
|
|
};
|