-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
101 lines (74 loc) · 2.68 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import CacheEngineInterface from './CacheEngineInterface';
import InMemoryCache from './InMemoryCache';
const DEFAULT_HEADERS: object = {};
const DEFAULT_CACHE: InMemoryCache = new InMemoryCache();
const DEFAULT_CACHE_IN_MS: number = 0;
type Response = {
status: number,
errors: string[],
data: object,
}
interface Endpoint { (req: object, res: object): void }
type GlobalConfiguration = {
headers?: {},
cacheEngine?: CacheEngineInterface,
cacheTimeInMs?: number,
}
type QueryOptions = {
name: String,
variables: object,
headers?: {},
cacheEngine?: CacheEngineInterface,
cacheTimeInMs?: number,
}
const exampleResponse: Response = {
status: 200,
errors: [],
data: {},
};
export default class GraphQLClient {
static RawQuery(schema: string, options?: QueryOptions): Response {
return new GraphQLClient(schema).query(options);
}
private headers: object;
private cacheEngine: CacheEngineInterface;
private cacheTimeInMs: number;
constructor(public schema: string, options: GlobalConfiguration = {}) {
this.headers = DEFAULT_HEADERS;
this.cacheEngine = options.cacheEngine || DEFAULT_CACHE;
this.cacheTimeInMs = options.cacheTimeInMs || DEFAULT_CACHE_IN_MS;
}
public query(options: QueryOptions): Response;
public query(name: string, variables?: object): Response;
public query(nameOrOptions: string | QueryOptions, variablesOrNull?: object): Response {
const options = this.convertArgumentsToQueryOptions(nameOrOptions, variablesOrNull);
return exampleResponse;
}
public mutation(options: QueryOptions): Response;
public mutation(name: string, variables?: object): Response;
public mutation(nameOrOptions: string | QueryOptions, variablesOrNull?: object): Response {
const options = this.convertArgumentsToQueryOptions(nameOrOptions, variablesOrNull);
return exampleResponse;
}
public endpoint(options: QueryOptions): Endpoint;
public endpoint(name: string, variables?: object): Endpoint;
public endpoint(nameOrOptions: string | QueryOptions, variablesOrNull?: object): Endpoint {
const options = this.convertArgumentsToQueryOptions(nameOrOptions, variablesOrNull);
return async function graphQLClientEndpoint(_, res): Promise<void> {
const response = await exampleResponse;
res.send(response);
};
}
private convertArgumentsToQueryOptions(nameOrOptions: string | QueryOptions, variablesOrNull?: object): QueryOptions {
if (typeof nameOrOptions === 'string') {
const name: string = nameOrOptions;
const variables: object = variablesOrNull || {};
return {
name,
variables,
};
}
const options: QueryOptions = nameOrOptions;
return options;
}
}