-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathindex.ts
120 lines (98 loc) · 3.43 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import { Request, Response } from 'apollo-server-env';
import {
GraphQLSchema,
ValidationContext,
ASTVisitor,
GraphQLFormattedError,
OperationDefinitionNode,
DocumentNode,
GraphQLError,
} from 'graphql';
// This seems like it could live in this package too.
import { KeyValueCache } from 'apollo-server-caching';
import { Trace } from 'apollo-engine-reporting-protobuf';
export type ValueOrPromise<T> = T | Promise<T>;
export type WithRequired<T, K extends keyof T> = T & Required<Pick<T, K>>;
type Mutable<T> = { -readonly [P in keyof T]: T[P] };
export interface GraphQLServiceContext {
logger: Logger;
schema: GraphQLSchema;
schemaHash: string;
engine: {
serviceID?: string;
apiKeyHash?: string;
};
persistedQueries?: {
cache: KeyValueCache;
};
}
export interface GraphQLRequest {
query?: string;
operationName?: string;
variables?: VariableValues;
extensions?: Record<string, any>;
http?: Pick<Request, 'url' | 'method' | 'headers'>;
}
export type VariableValues = { [name: string]: any };
export interface GraphQLResponse {
data?: Record<string, any> | null;
errors?: ReadonlyArray<GraphQLFormattedError>;
extensions?: Record<string, any>;
http?: Pick<Response, 'headers'> & Partial<Pick<Mutable<Response>, 'status'>>;
}
export interface GraphQLRequestMetrics {
captureTraces?: boolean;
persistedQueryHit?: boolean;
persistedQueryRegister?: boolean;
responseCacheHit?: boolean;
forbiddenOperation?: boolean;
registeredOperation?: boolean;
startHrTime?: [number, number];
queryPlanTrace?: Trace.QueryPlanNode;
}
export interface GraphQLRequestContext<TContext = Record<string, any>> {
readonly request: GraphQLRequest;
readonly response?: GraphQLResponse;
logger: Logger;
readonly context: TContext;
readonly cache: KeyValueCache;
// This will be replaced with the `operationID`.
readonly queryHash?: string;
readonly document?: DocumentNode;
readonly source?: string;
// `operationName` is set based on the operation AST, so it is defined even if
// no `request.operationName` was passed in. It will be set to `null` for an
// anonymous operation, or if `requestName.operationName` was passed in but
// doesn't resolve to an operation in the document.
readonly operationName?: string | null;
readonly operation?: OperationDefinitionNode;
/**
* Unformatted errors which have occurred during the request. Note that these
* are present earlier in the request pipeline and differ from **formatted**
* errors which are the result of running the user-configurable `formatError`
* transformation function over specific errors.
*/
readonly errors?: ReadonlyArray<GraphQLError>;
readonly metrics?: GraphQLRequestMetrics;
debug?: boolean;
}
export type ValidationRule = (context: ValidationContext) => ASTVisitor;
export class InvalidGraphQLRequestError extends GraphQLError {}
export type GraphQLExecutor<TContext = Record<string, any>> = (
requestContext: WithRequired<
GraphQLRequestContext<TContext>,
'document' | 'operationName' | 'operation' | 'queryHash'
>,
) => ValueOrPromise<GraphQLExecutionResult>;
export type GraphQLExecutionResult = {
data?: Record<string, any> | null;
errors?: ReadonlyArray<GraphQLError>;
extensions?: Record<string, any>;
};
export type Logger = {
// Ordered from least-severe to most-severe.
debug(message?: any): void;
info(message?: any): void;
warn(message?: any): void;
error(message?: any): void;
}