@graphql-tools/prisma-loader
Version:
A set of utils for faster development of GraphQL tools
37 lines (36 loc) • 938 B
TypeScript
export interface PrismaDefinition {
datamodel?: string | string[];
subscriptions?: SubscriptionMap;
custom?: any;
secret?: string;
disableAuth?: boolean;
seed?: Seed;
endpoint?: string;
hooks?: any;
generate?: Generate[];
databaseType?: DatabaseType;
}
export declare type DatabaseType = 'relational' | 'document';
export interface Generate {
generator: string;
output: string;
}
export interface Seed {
import?: string;
run?: string;
}
export interface SubscriptionMap {
[subscriptionName: string]: SubscriptionDefinition;
}
export interface SubscriptionDefinition {
query: string;
webhook: FunctionHandlerWebhookSource;
}
export declare type FunctionHandlerWebhookSource = string | FunctionHandlerWebhookWithHeaders;
export interface FunctionHandlerWebhookWithHeaders {
url: string;
headers?: Headers;
}
export interface Headers {
[key: string]: string;
}