-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathSchemaBuilderOptions.ts
87 lines (73 loc) · 2.37 KB
/
SchemaBuilderOptions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import {GraphModule} from "./GraphModule";
import {Action} from "../";
import {ContainerInstance} from "typedi";
/**
* Vesper middleware options.
*/
export interface SchemaBuilderOptions extends GraphModule {
/**
* List of modules to load.
*/
modules?: { new (): GraphModule }[];
/**
* Special function used to check user authorization roles per request.
* Should throw an error if authorization was failed.
* Can return asynchronous value.
*/
authorizationChecker?: (roles: any[], action: Action) => Promise<any>|any;
/**
* Can be used to setup container on each user request.
* For example, you can setup a currently authorized user and store it in the container.
* Can return asynchronous value.
*/
setupContainer?: (container: ContainerInstance, action: Action) => Promise<any>|any;
/**
* Setups AsyncIterator to use it for subscriptions.
*/
subscriptionAsyncIterator?: (triggers: string | string[]) => AsyncIterator<any>;
/**
* Resolves name for an entity.
*/
entityResolverNamingStrategy?: (entity: Function) => string;
/**
* Additional resolvers (applied to all other class-based resolvers).
*/
customResolvers?: any;
/**
* Additional type definitions (applied to all other type definitions).
*/
customTypeDefs?: any;
/**
* Custom TypeORM connection options.
*/
typeorm?: {
/**
* Custom TypeORM ConnectionOptionsReader options.
*/
connectionOptionsReaderOptions?: {
/**
* Directory where ormconfig should be read from.
* By default its your application root (where your app package.json is located).
*/
root?: string,
/**
* Filename of the ormconfig configuration. By default its equal to "ormconfig".
*/
configName?: string
};
/**
* Custom TypeORM connection name. "default" by default
*/
connectionName?: string;
};
/**
* Logger to be used for error reporting.
* By default console.error is used.
*/
logger?: (error: any) => any;
/**
* List of key-value parameters to set into the container.
* You can pass a parameter filenames (single or multiple files).
*/
parameters?: object|string|string[];
}