@webiny/handler-graphql 0.0.0-mt-2 → 0.0.0-unstable.06b2ede40f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ResolverDecoration.d.ts +6 -0
- package/ResolverDecoration.js +26 -0
- package/ResolverDecoration.js.map +1 -0
- package/builtInTypes/AnyScalar.d.ts +1 -1
- package/builtInTypes/AnyScalar.js +4 -6
- package/builtInTypes/AnyScalar.js.map +1 -0
- package/builtInTypes/DateScalar.js +7 -18
- package/builtInTypes/DateScalar.js.map +1 -0
- package/builtInTypes/DateTimeScalar.js +5 -16
- package/builtInTypes/DateTimeScalar.js.map +1 -0
- package/builtInTypes/DateTimeZScalar.js +4 -16
- package/builtInTypes/DateTimeZScalar.js.map +1 -0
- package/builtInTypes/JsonScalar.js +2 -3
- package/builtInTypes/JsonScalar.js.map +1 -0
- package/builtInTypes/LongScalar.d.ts +2 -1
- package/builtInTypes/LongScalar.js +49 -4
- package/builtInTypes/LongScalar.js.map +1 -0
- package/builtInTypes/NumberScalar.d.ts +1 -1
- package/builtInTypes/NumberScalar.js +10 -15
- package/builtInTypes/NumberScalar.js.map +1 -0
- package/builtInTypes/RefInputScalar.d.ts +1 -1
- package/builtInTypes/RefInputScalar.js +34 -23
- package/builtInTypes/RefInputScalar.js.map +1 -0
- package/builtInTypes/TimeScalar.js +4 -15
- package/builtInTypes/TimeScalar.js.map +1 -0
- package/builtInTypes/index.js +3 -19
- package/builtInTypes/index.js.map +1 -0
- package/createGraphQLHandler.d.ts +3 -3
- package/createGraphQLHandler.js +90 -57
- package/createGraphQLHandler.js.map +1 -0
- package/createGraphQLSchema.d.ts +4 -3
- package/createGraphQLSchema.js +58 -30
- package/createGraphQLSchema.js.map +1 -0
- package/createResolverDecorator.d.ts +2 -0
- package/createResolverDecorator.js +12 -0
- package/createResolverDecorator.js.map +1 -0
- package/debugPlugins.d.ts +10 -8
- package/debugPlugins.js +18 -28
- package/debugPlugins.js.map +1 -0
- package/errors.d.ts +2 -2
- package/errors.js +3 -6
- package/errors.js.map +1 -0
- package/index.d.ts +8 -6
- package/index.js +67 -22
- package/index.js.map +1 -0
- package/interceptConsole.d.ts +5 -1
- package/interceptConsole.js +7 -7
- package/interceptConsole.js.map +1 -0
- package/package.json +21 -23
- package/plugins/GraphQLSchemaPlugin.d.ts +14 -6
- package/plugins/GraphQLSchemaPlugin.js +16 -13
- package/plugins/GraphQLSchemaPlugin.js.map +1 -0
- package/plugins/index.js +3 -3
- package/plugins/index.js.map +1 -0
- package/processRequestBody.d.ts +4 -2
- package/processRequestBody.js +19 -18
- package/processRequestBody.js.map +1 -0
- package/responses.d.ts +20 -18
- package/responses.js +23 -34
- package/responses.js.map +1 -0
- package/types.d.ts +21 -12
- package/types.js +3 -1
- package/types.js.map +1 -0
- package/utils/index.d.ts +1 -0
- package/utils/index.js +18 -0
- package/utils/index.js.map +1 -0
- package/utils/resolve.d.ts +21 -0
- package/utils/resolve.js +28 -0
- package/utils/resolve.js.map +1 -0
package/builtInTypes/index.js
CHANGED
|
@@ -3,9 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
|
|
7
6
|
var _AnyScalar = require("./AnyScalar");
|
|
8
|
-
|
|
9
7
|
Object.keys(_AnyScalar).forEach(function (key) {
|
|
10
8
|
if (key === "default" || key === "__esModule") return;
|
|
11
9
|
if (key in exports && exports[key] === _AnyScalar[key]) return;
|
|
@@ -16,9 +14,7 @@ Object.keys(_AnyScalar).forEach(function (key) {
|
|
|
16
14
|
}
|
|
17
15
|
});
|
|
18
16
|
});
|
|
19
|
-
|
|
20
17
|
var _DateScalar = require("./DateScalar");
|
|
21
|
-
|
|
22
18
|
Object.keys(_DateScalar).forEach(function (key) {
|
|
23
19
|
if (key === "default" || key === "__esModule") return;
|
|
24
20
|
if (key in exports && exports[key] === _DateScalar[key]) return;
|
|
@@ -29,9 +25,7 @@ Object.keys(_DateScalar).forEach(function (key) {
|
|
|
29
25
|
}
|
|
30
26
|
});
|
|
31
27
|
});
|
|
32
|
-
|
|
33
28
|
var _DateTimeScalar = require("./DateTimeScalar");
|
|
34
|
-
|
|
35
29
|
Object.keys(_DateTimeScalar).forEach(function (key) {
|
|
36
30
|
if (key === "default" || key === "__esModule") return;
|
|
37
31
|
if (key in exports && exports[key] === _DateTimeScalar[key]) return;
|
|
@@ -42,9 +36,7 @@ Object.keys(_DateTimeScalar).forEach(function (key) {
|
|
|
42
36
|
}
|
|
43
37
|
});
|
|
44
38
|
});
|
|
45
|
-
|
|
46
39
|
var _DateTimeZScalar = require("./DateTimeZScalar");
|
|
47
|
-
|
|
48
40
|
Object.keys(_DateTimeZScalar).forEach(function (key) {
|
|
49
41
|
if (key === "default" || key === "__esModule") return;
|
|
50
42
|
if (key in exports && exports[key] === _DateTimeZScalar[key]) return;
|
|
@@ -55,9 +47,7 @@ Object.keys(_DateTimeZScalar).forEach(function (key) {
|
|
|
55
47
|
}
|
|
56
48
|
});
|
|
57
49
|
});
|
|
58
|
-
|
|
59
50
|
var _JsonScalar = require("./JsonScalar");
|
|
60
|
-
|
|
61
51
|
Object.keys(_JsonScalar).forEach(function (key) {
|
|
62
52
|
if (key === "default" || key === "__esModule") return;
|
|
63
53
|
if (key in exports && exports[key] === _JsonScalar[key]) return;
|
|
@@ -68,9 +58,7 @@ Object.keys(_JsonScalar).forEach(function (key) {
|
|
|
68
58
|
}
|
|
69
59
|
});
|
|
70
60
|
});
|
|
71
|
-
|
|
72
61
|
var _LongScalar = require("./LongScalar");
|
|
73
|
-
|
|
74
62
|
Object.keys(_LongScalar).forEach(function (key) {
|
|
75
63
|
if (key === "default" || key === "__esModule") return;
|
|
76
64
|
if (key in exports && exports[key] === _LongScalar[key]) return;
|
|
@@ -81,9 +69,7 @@ Object.keys(_LongScalar).forEach(function (key) {
|
|
|
81
69
|
}
|
|
82
70
|
});
|
|
83
71
|
});
|
|
84
|
-
|
|
85
72
|
var _NumberScalar = require("./NumberScalar");
|
|
86
|
-
|
|
87
73
|
Object.keys(_NumberScalar).forEach(function (key) {
|
|
88
74
|
if (key === "default" || key === "__esModule") return;
|
|
89
75
|
if (key in exports && exports[key] === _NumberScalar[key]) return;
|
|
@@ -94,9 +80,7 @@ Object.keys(_NumberScalar).forEach(function (key) {
|
|
|
94
80
|
}
|
|
95
81
|
});
|
|
96
82
|
});
|
|
97
|
-
|
|
98
83
|
var _RefInputScalar = require("./RefInputScalar");
|
|
99
|
-
|
|
100
84
|
Object.keys(_RefInputScalar).forEach(function (key) {
|
|
101
85
|
if (key === "default" || key === "__esModule") return;
|
|
102
86
|
if (key in exports && exports[key] === _RefInputScalar[key]) return;
|
|
@@ -107,9 +91,7 @@ Object.keys(_RefInputScalar).forEach(function (key) {
|
|
|
107
91
|
}
|
|
108
92
|
});
|
|
109
93
|
});
|
|
110
|
-
|
|
111
94
|
var _TimeScalar = require("./TimeScalar");
|
|
112
|
-
|
|
113
95
|
Object.keys(_TimeScalar).forEach(function (key) {
|
|
114
96
|
if (key === "default" || key === "__esModule") return;
|
|
115
97
|
if (key in exports && exports[key] === _TimeScalar[key]) return;
|
|
@@ -119,4 +101,6 @@ Object.keys(_TimeScalar).forEach(function (key) {
|
|
|
119
101
|
return _TimeScalar[key];
|
|
120
102
|
}
|
|
121
103
|
});
|
|
122
|
-
});
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_AnyScalar","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_DateScalar","_DateTimeScalar","_DateTimeZScalar","_JsonScalar","_LongScalar","_NumberScalar","_RefInputScalar","_TimeScalar"],"sources":["index.ts"],"sourcesContent":["export * from \"./AnyScalar\";\nexport * from \"./DateScalar\";\nexport * from \"./DateTimeScalar\";\nexport * from \"./DateTimeZScalar\";\nexport * from \"./JsonScalar\";\nexport * from \"./LongScalar\";\nexport * from \"./NumberScalar\";\nexport * from \"./RefInputScalar\";\nexport * from \"./TimeScalar\";\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
declare const _default: (options?: HandlerGraphQLOptions) =>
|
|
1
|
+
import type { Plugin } from "@webiny/plugins/types";
|
|
2
|
+
import type { HandlerGraphQLOptions } from "./types";
|
|
3
|
+
declare const _default: (options?: HandlerGraphQLOptions) => Plugin[];
|
|
4
4
|
export default _default;
|
package/createGraphQLHandler.js
CHANGED
|
@@ -1,77 +1,110 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.default = void 0;
|
|
9
|
-
|
|
10
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
|
-
|
|
12
8
|
var _boolean = require("boolean");
|
|
13
|
-
|
|
9
|
+
var _handler = require("@webiny/handler");
|
|
10
|
+
var _error = _interopRequireDefault(require("@webiny/error"));
|
|
14
11
|
var _createGraphQLSchema = require("./createGraphQLSchema");
|
|
15
|
-
|
|
16
12
|
var _debugPlugins = _interopRequireDefault(require("./debugPlugins"));
|
|
13
|
+
var _processRequestBody = require("./processRequestBody");
|
|
14
|
+
const DEFAULT_CACHE_MAX_AGE = 30758400; // 1 year
|
|
17
15
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
const createCacheKey = context => {
|
|
17
|
+
const plugins = (0, _createGraphQLSchema.getSchemaPlugins)(context);
|
|
18
|
+
// TODO: in the near future, we have to assign a fixed name to every
|
|
19
|
+
// TODO: GraphQLSchema plugin, to be able to create a reliable cache key.
|
|
21
20
|
|
|
22
|
-
|
|
21
|
+
// TODO: `getCurrentTenant` should be injected as a parameter.
|
|
22
|
+
// @ts-expect-error TODO: We should not be accessing `context` like this here.
|
|
23
|
+
const tenant = context.tenancy?.getCurrentTenant();
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
// TODO: `getContentLocale` should be injected as a parameter.
|
|
26
|
+
// @ts-expect-error TODO: We should not be accessing `context` like this here.
|
|
27
|
+
const contentLocale = context.i18n?.getContentLocale();
|
|
28
|
+
return [tenant ? `tenant:${tenant.id}` : null, contentLocale ? `locale:${contentLocale.code}` : null, plugins.length.toString()].filter(Boolean).join("#");
|
|
29
|
+
};
|
|
30
|
+
const createRequestBody = body => {
|
|
31
|
+
/**
|
|
32
|
+
* We are trusting that the body payload is correct.
|
|
33
|
+
* The `processRequestBody` will fail if it is not.
|
|
34
|
+
*/
|
|
35
|
+
return typeof body === "string" ? JSON.parse(body) : body;
|
|
36
|
+
};
|
|
37
|
+
const formatErrorPayload = error => {
|
|
38
|
+
if (error instanceof _error.default) {
|
|
39
|
+
return JSON.stringify({
|
|
40
|
+
type: "CoreGraphQLWebinyError",
|
|
41
|
+
message: error.message,
|
|
42
|
+
code: error.code,
|
|
43
|
+
data: error.data
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
return JSON.stringify({
|
|
47
|
+
type: "Error",
|
|
48
|
+
name: error.name,
|
|
49
|
+
message: error.message,
|
|
50
|
+
stack: error.stack
|
|
51
|
+
});
|
|
29
52
|
};
|
|
30
|
-
const DEFAULT_CACHE_MAX_AGE = 30758400; // 1 year
|
|
31
|
-
|
|
32
53
|
var _default = (options = {}) => {
|
|
33
|
-
let schema;
|
|
54
|
+
let schema = undefined;
|
|
55
|
+
let cacheKey = undefined;
|
|
34
56
|
const debug = (0, _boolean.boolean)(options.debug);
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
if (
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
57
|
+
const path = options?.path || "/graphql";
|
|
58
|
+
const route = new _handler.RoutePlugin(async ({
|
|
59
|
+
onPost,
|
|
60
|
+
onOptions,
|
|
61
|
+
context
|
|
62
|
+
}) => {
|
|
63
|
+
onOptions(path, async (_, reply) => {
|
|
64
|
+
return reply.status(204).headers({
|
|
65
|
+
"Cache-Control": `public, max-age=${DEFAULT_CACHE_MAX_AGE}`
|
|
66
|
+
}).send({}).hijack();
|
|
67
|
+
});
|
|
68
|
+
onPost(path, async (request, reply) => {
|
|
69
|
+
const contextCacheKey = createCacheKey(context);
|
|
70
|
+
if (!schema || cacheKey !== contextCacheKey) {
|
|
71
|
+
try {
|
|
72
|
+
schema = (0, _createGraphQLSchema.createGraphQLSchema)(context);
|
|
73
|
+
cacheKey = contextCacheKey;
|
|
74
|
+
} catch (ex) {
|
|
75
|
+
return reply.code(500).send(formatErrorPayload(ex));
|
|
76
|
+
}
|
|
55
77
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
78
|
+
let body;
|
|
79
|
+
try {
|
|
80
|
+
body = createRequestBody(request.body);
|
|
81
|
+
} catch (ex) {
|
|
82
|
+
console.error(`Error while creating the body request.`);
|
|
83
|
+
console.error(formatErrorPayload(ex));
|
|
84
|
+
throw ex;
|
|
59
85
|
}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
86
|
+
try {
|
|
87
|
+
const result = await (0, _processRequestBody.processRequestBody)(body, schema, context);
|
|
88
|
+
/**
|
|
89
|
+
* IMPORTANT! Do not send anything if reply was already sent.
|
|
90
|
+
*/
|
|
91
|
+
if (reply.sent) {
|
|
92
|
+
console.warn("Reply already sent, cannot send the result (handler-graphql).");
|
|
93
|
+
return reply;
|
|
94
|
+
}
|
|
95
|
+
return reply.status(200).send(result);
|
|
96
|
+
} catch (ex) {
|
|
97
|
+
console.error(`Error while processing the body request.`);
|
|
98
|
+
console.error(formatErrorPayload(ex));
|
|
99
|
+
throw ex;
|
|
63
100
|
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
headers: DEFAULT_HEADERS
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
}];
|
|
101
|
+
});
|
|
102
|
+
});
|
|
103
|
+
route.name = "handler.graphql.route.default";
|
|
104
|
+
return [...(debug ? (0, _debugPlugins.default)() : []), {
|
|
105
|
+
type: "wcp-telemetry-tracker"
|
|
106
|
+
}, route];
|
|
75
107
|
};
|
|
108
|
+
exports.default = _default;
|
|
76
109
|
|
|
77
|
-
|
|
110
|
+
//# sourceMappingURL=createGraphQLHandler.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_boolean","require","_handler","_error","_interopRequireDefault","_createGraphQLSchema","_debugPlugins","_processRequestBody","DEFAULT_CACHE_MAX_AGE","createCacheKey","context","plugins","getSchemaPlugins","tenant","tenancy","getCurrentTenant","contentLocale","i18n","getContentLocale","id","code","length","toString","filter","Boolean","join","createRequestBody","body","JSON","parse","formatErrorPayload","error","WebinyError","stringify","type","message","data","name","stack","_default","options","schema","undefined","cacheKey","debug","boolean","path","route","RoutePlugin","onPost","onOptions","_","reply","status","headers","send","hijack","request","contextCacheKey","createGraphQLSchema","ex","console","result","processRequestBody","sent","warn","debugPlugins","exports","default"],"sources":["createGraphQLHandler.ts"],"sourcesContent":["import { boolean } from \"boolean\";\nimport type { GraphQLSchema } from \"graphql\";\nimport type { Context } from \"@webiny/handler\";\nimport { RoutePlugin } from \"@webiny/handler\";\nimport WebinyError from \"@webiny/error\";\nimport type { Plugin } from \"@webiny/plugins/types\";\nimport type { GraphQLRequestBody, HandlerGraphQLOptions } from \"./types\";\nimport { createGraphQLSchema, getSchemaPlugins } from \"./createGraphQLSchema\";\nimport debugPlugins from \"./debugPlugins\";\nimport { processRequestBody } from \"./processRequestBody\";\n\nconst DEFAULT_CACHE_MAX_AGE = 30758400; // 1 year\n\nconst createCacheKey = (context: Context) => {\n const plugins = getSchemaPlugins(context);\n // TODO: in the near future, we have to assign a fixed name to every\n // TODO: GraphQLSchema plugin, to be able to create a reliable cache key.\n\n // TODO: `getCurrentTenant` should be injected as a parameter.\n // @ts-expect-error TODO: We should not be accessing `context` like this here.\n const tenant = context.tenancy?.getCurrentTenant();\n\n // TODO: `getContentLocale` should be injected as a parameter.\n // @ts-expect-error TODO: We should not be accessing `context` like this here.\n const contentLocale = context.i18n?.getContentLocale();\n\n return [\n tenant ? `tenant:${tenant.id}` : null,\n contentLocale ? `locale:${contentLocale.code}` : null,\n plugins.length.toString()\n ]\n .filter(Boolean)\n .join(\"#\");\n};\n\nconst createRequestBody = (body: unknown): GraphQLRequestBody | GraphQLRequestBody[] => {\n /**\n * We are trusting that the body payload is correct.\n * The `processRequestBody` will fail if it is not.\n */\n return typeof body === \"string\" ? JSON.parse(body) : body;\n};\n\nconst formatErrorPayload = (error: Error): string => {\n if (error instanceof WebinyError) {\n return JSON.stringify({\n type: \"CoreGraphQLWebinyError\",\n message: error.message,\n code: error.code,\n data: error.data\n });\n }\n\n return JSON.stringify({\n type: \"Error\",\n name: error.name,\n message: error.message,\n stack: error.stack\n });\n};\n\nexport default (options: HandlerGraphQLOptions = {}): Plugin[] => {\n let schema: GraphQLSchema | undefined = undefined;\n let cacheKey: string | undefined = undefined;\n\n const debug = boolean(options.debug);\n\n const path = options?.path || \"/graphql\";\n\n const route = new RoutePlugin(async ({ onPost, onOptions, context }) => {\n onOptions(path, async (_, reply) => {\n return reply\n .status(204)\n .headers({\n \"Cache-Control\": `public, max-age=${DEFAULT_CACHE_MAX_AGE}`\n })\n .send({})\n .hijack();\n });\n onPost(path, async (request, reply) => {\n const contextCacheKey = createCacheKey(context as Context);\n if (!schema || cacheKey !== contextCacheKey) {\n try {\n schema = createGraphQLSchema(context);\n cacheKey = contextCacheKey;\n } catch (ex) {\n return reply.code(500).send(formatErrorPayload(ex));\n }\n }\n let body: GraphQLRequestBody | GraphQLRequestBody[];\n try {\n body = createRequestBody(request.body);\n } catch (ex) {\n console.error(`Error while creating the body request.`);\n console.error(formatErrorPayload(ex));\n throw ex;\n }\n try {\n const result = await processRequestBody(body, schema, context);\n /**\n * IMPORTANT! Do not send anything if reply was already sent.\n */\n if (reply.sent) {\n console.warn(\"Reply already sent, cannot send the result (handler-graphql).\");\n return reply;\n }\n return reply.status(200).send(result);\n } catch (ex) {\n console.error(`Error while processing the body request.`);\n console.error(formatErrorPayload(ex));\n throw ex;\n }\n });\n });\n\n route.name = \"handler.graphql.route.default\";\n\n return [\n ...(debug ? debugPlugins() : []),\n {\n type: \"wcp-telemetry-tracker\"\n },\n route\n ];\n};\n"],"mappings":"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","ignoreList":[]}
|
package/createGraphQLSchema.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import { Context } from "@webiny/
|
|
2
|
-
import {
|
|
3
|
-
export declare const
|
|
1
|
+
import type { Context } from "@webiny/api/types";
|
|
2
|
+
import type { GraphQLSchemaPlugin } from "./plugins";
|
|
3
|
+
export declare const getSchemaPlugins: (context: Context) => import("@webiny/plugins/PluginsContainer").WithName<GraphQLSchemaPlugin<Context>>[];
|
|
4
|
+
export declare const createGraphQLSchema: (context: Context) => import("graphql").GraphQLSchema;
|
package/createGraphQLSchema.js
CHANGED
|
@@ -1,26 +1,29 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
|
-
exports.createGraphQLSchema = void 0;
|
|
9
|
-
|
|
10
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
|
-
|
|
7
|
+
exports.getSchemaPlugins = exports.createGraphQLSchema = void 0;
|
|
12
8
|
var _graphqlTag = _interopRequireDefault(require("graphql-tag"));
|
|
13
|
-
|
|
14
9
|
var _schema = require("@graphql-tools/schema");
|
|
15
|
-
|
|
10
|
+
var _merge = require("@graphql-tools/merge");
|
|
16
11
|
var _builtInTypes = require("./builtInTypes");
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
12
|
+
var _ResolverDecoration = require("./ResolverDecoration");
|
|
13
|
+
const getSchemaPlugins = context => {
|
|
14
|
+
return context.plugins.byType("graphql-schema").filter(pl => {
|
|
15
|
+
if (typeof pl.isApplicable === "function") {
|
|
16
|
+
return pl.isApplicable(context);
|
|
17
|
+
}
|
|
18
|
+
return true;
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
exports.getSchemaPlugins = getSchemaPlugins;
|
|
22
22
|
const createGraphQLSchema = context => {
|
|
23
23
|
const scalars = context.plugins.byType("graphql-scalar").map(item => item.scalar);
|
|
24
|
+
|
|
25
|
+
// TODO: once the API packages are more closed, we'll have the opportunity
|
|
26
|
+
// TODO: to maybe import the @ps directive from `api-prerendering-service` package.
|
|
24
27
|
const typeDefs = [(0, _graphqlTag.default)`
|
|
25
28
|
type Query
|
|
26
29
|
type Mutation
|
|
@@ -33,33 +36,58 @@ const createGraphQLSchema = context => {
|
|
|
33
36
|
scalar Date
|
|
34
37
|
scalar DateTime
|
|
35
38
|
scalar Time
|
|
39
|
+
|
|
40
|
+
# This directive doesn't do anything on the GraphQL resolution level. It just serves
|
|
41
|
+
# as a way to tell the Prerendering Service whether the GraphQL query needs to be
|
|
42
|
+
# cached or not.
|
|
43
|
+
directive @ps(cache: Boolean) on QUERY
|
|
44
|
+
|
|
45
|
+
type Error {
|
|
46
|
+
code: String
|
|
47
|
+
message: String
|
|
48
|
+
data: JSON
|
|
49
|
+
stack: String
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
type BooleanResponse {
|
|
53
|
+
data: Boolean
|
|
54
|
+
error: Error
|
|
55
|
+
}
|
|
36
56
|
`];
|
|
37
|
-
const resolvers = [
|
|
38
|
-
acc
|
|
39
|
-
|
|
40
|
-
|
|
57
|
+
const resolvers = [{
|
|
58
|
+
...scalars.reduce((acc, s) => {
|
|
59
|
+
acc[s.name] = s;
|
|
60
|
+
return acc;
|
|
61
|
+
}, {}),
|
|
41
62
|
JSON: _builtInTypes.JsonScalar,
|
|
42
63
|
Long: _builtInTypes.LongScalar,
|
|
43
|
-
RefInput: _builtInTypes.
|
|
44
|
-
Number: _builtInTypes.
|
|
45
|
-
Any: _builtInTypes.
|
|
64
|
+
RefInput: _builtInTypes.RefInputScalar,
|
|
65
|
+
Number: _builtInTypes.NumberScalar,
|
|
66
|
+
Any: _builtInTypes.AnyScalar,
|
|
46
67
|
DateTime: _builtInTypes.DateTimeScalar,
|
|
47
68
|
Date: _builtInTypes.DateScalar,
|
|
48
69
|
Time: _builtInTypes.TimeScalar
|
|
49
|
-
}
|
|
50
|
-
const
|
|
51
|
-
|
|
52
|
-
for (
|
|
53
|
-
const
|
|
54
|
-
|
|
55
|
-
|
|
70
|
+
}];
|
|
71
|
+
const resolverDecoration = new _ResolverDecoration.ResolverDecoration();
|
|
72
|
+
const plugins = getSchemaPlugins(context);
|
|
73
|
+
for (const plugin of plugins) {
|
|
74
|
+
const schema = plugin.schema;
|
|
75
|
+
if (schema.typeDefs) {
|
|
76
|
+
typeDefs.push(schema.typeDefs);
|
|
77
|
+
}
|
|
78
|
+
if (schema.resolvers) {
|
|
79
|
+
resolvers.push(schema.resolvers);
|
|
80
|
+
}
|
|
81
|
+
if (schema.resolverDecorators) {
|
|
82
|
+
resolverDecoration.addDecorators(schema.resolverDecorators);
|
|
83
|
+
}
|
|
56
84
|
}
|
|
57
|
-
|
|
58
85
|
return (0, _schema.makeExecutableSchema)({
|
|
59
86
|
typeDefs,
|
|
60
|
-
resolvers,
|
|
87
|
+
resolvers: resolverDecoration.decorateResolvers((0, _merge.mergeResolvers)(resolvers)),
|
|
61
88
|
inheritResolversFromInterfaces: true
|
|
62
89
|
});
|
|
63
90
|
};
|
|
91
|
+
exports.createGraphQLSchema = createGraphQLSchema;
|
|
64
92
|
|
|
65
|
-
|
|
93
|
+
//# sourceMappingURL=createGraphQLSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_graphqlTag","_interopRequireDefault","require","_schema","_merge","_builtInTypes","_ResolverDecoration","getSchemaPlugins","context","plugins","byType","filter","pl","isApplicable","exports","createGraphQLSchema","scalars","map","item","scalar","typeDefs","gql","name","join","resolvers","reduce","acc","s","JSON","JsonScalar","Long","LongScalar","RefInput","RefInputScalar","Number","NumberScalar","Any","AnyScalar","DateTime","DateTimeScalar","Date","DateScalar","Time","TimeScalar","resolverDecoration","ResolverDecoration","plugin","schema","push","resolverDecorators","addDecorators","makeExecutableSchema","decorateResolvers","mergeResolvers","inheritResolversFromInterfaces"],"sources":["createGraphQLSchema.ts"],"sourcesContent":["import gql from \"graphql-tag\";\nimport { makeExecutableSchema } from \"@graphql-tools/schema\";\nimport { mergeResolvers } from \"@graphql-tools/merge\";\nimport type { GraphQLScalarType } from \"graphql/type/definition\";\nimport type { GraphQLScalarPlugin, Resolvers, TypeDefs } from \"./types\";\nimport type { Context } from \"@webiny/api/types\";\nimport {\n RefInputScalar,\n NumberScalar,\n AnyScalar,\n DateScalar,\n DateTimeScalar,\n JsonScalar,\n TimeScalar,\n LongScalar\n} from \"./builtInTypes\";\nimport { ResolverDecoration } from \"./ResolverDecoration\";\nimport type { GraphQLSchemaPlugin } from \"~/plugins\";\n\nexport const getSchemaPlugins = (context: Context) => {\n return context.plugins.byType<GraphQLSchemaPlugin>(\"graphql-schema\").filter(pl => {\n if (typeof pl.isApplicable === \"function\") {\n return pl.isApplicable(context);\n }\n return true;\n });\n};\n\nexport const createGraphQLSchema = (context: Context) => {\n const scalars = context.plugins\n .byType<GraphQLScalarPlugin>(\"graphql-scalar\")\n .map(item => item.scalar);\n\n // TODO: once the API packages are more closed, we'll have the opportunity\n // TODO: to maybe import the @ps directive from `api-prerendering-service` package.\n const typeDefs: TypeDefs[] = [\n gql`\n type Query\n type Mutation\n ${scalars.map(scalar => `scalar ${scalar.name}`).join(\" \")}\n scalar JSON\n scalar Long\n scalar RefInput\n scalar Number\n scalar Any\n scalar Date\n scalar DateTime\n scalar Time\n\n # This directive doesn't do anything on the GraphQL resolution level. It just serves\n # as a way to tell the Prerendering Service whether the GraphQL query needs to be\n # cached or not.\n directive @ps(cache: Boolean) on QUERY\n\n type Error {\n code: String\n message: String\n data: JSON\n stack: String\n }\n\n type BooleanResponse {\n data: Boolean\n error: Error\n }\n `\n ];\n\n const resolvers: Resolvers<any>[] = [\n {\n ...scalars.reduce<Record<string, GraphQLScalarType>>((acc, s) => {\n acc[s.name] = s;\n return acc;\n }, {}),\n JSON: JsonScalar,\n Long: LongScalar,\n RefInput: RefInputScalar,\n Number: NumberScalar,\n Any: AnyScalar,\n DateTime: DateTimeScalar,\n Date: DateScalar,\n Time: TimeScalar\n }\n ];\n\n const resolverDecoration = new ResolverDecoration();\n\n const plugins = getSchemaPlugins(context);\n\n for (const plugin of plugins) {\n const schema = plugin.schema;\n if (schema.typeDefs) {\n typeDefs.push(schema.typeDefs);\n }\n if (schema.resolvers) {\n resolvers.push(schema.resolvers);\n }\n if (schema.resolverDecorators) {\n resolverDecoration.addDecorators(schema.resolverDecorators);\n }\n }\n\n return makeExecutableSchema({\n typeDefs,\n resolvers: resolverDecoration.decorateResolvers(mergeResolvers(resolvers)),\n inheritResolversFromInterfaces: true\n });\n};\n"],"mappings":";;;;;;;AAAA,IAAAA,WAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,OAAA,GAAAD,OAAA;AACA,IAAAE,MAAA,GAAAF,OAAA;AAIA,IAAAG,aAAA,GAAAH,OAAA;AAUA,IAAAI,mBAAA,GAAAJ,OAAA;AAGO,MAAMK,gBAAgB,GAAIC,OAAgB,IAAK;EAClD,OAAOA,OAAO,CAACC,OAAO,CAACC,MAAM,CAAsB,gBAAgB,CAAC,CAACC,MAAM,CAACC,EAAE,IAAI;IAC9E,IAAI,OAAOA,EAAE,CAACC,YAAY,KAAK,UAAU,EAAE;MACvC,OAAOD,EAAE,CAACC,YAAY,CAACL,OAAO,CAAC;IACnC;IACA,OAAO,IAAI;EACf,CAAC,CAAC;AACN,CAAC;AAACM,OAAA,CAAAP,gBAAA,GAAAA,gBAAA;AAEK,MAAMQ,mBAAmB,GAAIP,OAAgB,IAAK;EACrD,MAAMQ,OAAO,GAAGR,OAAO,CAACC,OAAO,CAC1BC,MAAM,CAAsB,gBAAgB,CAAC,CAC7CO,GAAG,CAACC,IAAI,IAAIA,IAAI,CAACC,MAAM,CAAC;;EAE7B;EACA;EACA,MAAMC,QAAoB,GAAG,CACzB,IAAAC,mBAAG;AACX;AACA;AACA,cAAcL,OAAO,CAACC,GAAG,CAACE,MAAM,IAAI,UAAUA,MAAM,CAACG,IAAI,EAAE,CAAC,CAACC,IAAI,CAAC,GAAG,CAAC;AACtE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS,CACJ;EAED,MAAMC,SAA2B,GAAG,CAChC;IACI,GAAGR,OAAO,CAACS,MAAM,CAAoC,CAACC,GAAG,EAAEC,CAAC,KAAK;MAC7DD,GAAG,CAACC,CAAC,CAACL,IAAI,CAAC,GAAGK,CAAC;MACf,OAAOD,GAAG;IACd,CAAC,EAAE,CAAC,CAAC,CAAC;IACNE,IAAI,EAAEC,wBAAU;IAChBC,IAAI,EAAEC,wBAAU;IAChBC,QAAQ,EAAEC,4BAAc;IACxBC,MAAM,EAAEC,0BAAY;IACpBC,GAAG,EAAEC,uBAAS;IACdC,QAAQ,EAAEC,4BAAc;IACxBC,IAAI,EAAEC,wBAAU;IAChBC,IAAI,EAAEC;EACV,CAAC,CACJ;EAED,MAAMC,kBAAkB,GAAG,IAAIC,sCAAkB,CAAC,CAAC;EAEnD,MAAMpC,OAAO,GAAGF,gBAAgB,CAACC,OAAO,CAAC;EAEzC,KAAK,MAAMsC,MAAM,IAAIrC,OAAO,EAAE;IAC1B,MAAMsC,MAAM,GAAGD,MAAM,CAACC,MAAM;IAC5B,IAAIA,MAAM,CAAC3B,QAAQ,EAAE;MACjBA,QAAQ,CAAC4B,IAAI,CAACD,MAAM,CAAC3B,QAAQ,CAAC;IAClC;IACA,IAAI2B,MAAM,CAACvB,SAAS,EAAE;MAClBA,SAAS,CAACwB,IAAI,CAACD,MAAM,CAACvB,SAAS,CAAC;IACpC;IACA,IAAIuB,MAAM,CAACE,kBAAkB,EAAE;MAC3BL,kBAAkB,CAACM,aAAa,CAACH,MAAM,CAACE,kBAAkB,CAAC;IAC/D;EACJ;EAEA,OAAO,IAAAE,4BAAoB,EAAC;IACxB/B,QAAQ;IACRI,SAAS,EAAEoB,kBAAkB,CAACQ,iBAAiB,CAAC,IAAAC,qBAAc,EAAC7B,SAAS,CAAC,CAAC;IAC1E8B,8BAA8B,EAAE;EACpC,CAAC,CAAC;AACN,CAAC;AAACxC,OAAA,CAAAC,mBAAA,GAAAA,mBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createResolverDecorator = void 0;
|
|
7
|
+
const createResolverDecorator = decorator => {
|
|
8
|
+
return decorator;
|
|
9
|
+
};
|
|
10
|
+
exports.createResolverDecorator = createResolverDecorator;
|
|
11
|
+
|
|
12
|
+
//# sourceMappingURL=createResolverDecorator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createResolverDecorator","decorator","exports"],"sources":["createResolverDecorator.ts"],"sourcesContent":["import type { ResolverDecorator } from \"./types\";\n\nexport const createResolverDecorator = <TSource = any, TContext = any, TArgs = any>(\n decorator: ResolverDecorator<TSource, TContext, TArgs>\n) => {\n return decorator;\n};\n"],"mappings":";;;;;;AAEO,MAAMA,uBAAuB,GAChCC,SAAsD,IACrD;EACD,OAAOA,SAAS;AACpB,CAAC;AAACC,OAAA,CAAAF,uBAAA,GAAAA,uBAAA","ignoreList":[]}
|
package/debugPlugins.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { GraphQLAfterQueryPlugin
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import type { GraphQLAfterQueryPlugin } from "./types";
|
|
2
|
+
import type { Context } from "@webiny/api/types";
|
|
3
|
+
import { ContextPlugin } from "@webiny/api";
|
|
4
|
+
interface Log {
|
|
5
|
+
method: string;
|
|
6
|
+
args: any;
|
|
7
|
+
}
|
|
8
|
+
interface DebugContext extends Context {
|
|
4
9
|
debug: {
|
|
5
|
-
logs?:
|
|
6
|
-
method: string;
|
|
7
|
-
args: any;
|
|
8
|
-
}[];
|
|
10
|
+
logs?: Log[];
|
|
9
11
|
};
|
|
10
12
|
}
|
|
11
|
-
declare const _default: () => (ContextPlugin<DebugContext
|
|
13
|
+
declare const _default: () => (ContextPlugin<DebugContext> | GraphQLAfterQueryPlugin<DebugContext>)[];
|
|
12
14
|
export default _default;
|
package/debugPlugins.js
CHANGED
|
@@ -4,45 +4,35 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _interceptConsole = require("./interceptConsole");
|
|
9
|
-
|
|
10
|
-
var _default = () => [{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
apply(context) {
|
|
14
|
-
context.debug = context.debug || {};
|
|
15
|
-
context.debug.logs = [];
|
|
16
|
-
(0, _interceptConsole.interceptConsole)((method, args) => {
|
|
17
|
-
context.debug.logs.push({
|
|
18
|
-
method,
|
|
19
|
-
args
|
|
20
|
-
});
|
|
21
|
-
});
|
|
8
|
+
var _api = require("@webiny/api");
|
|
9
|
+
var _default = () => [new _api.ContextPlugin(async context => {
|
|
10
|
+
if (!context.debug) {
|
|
11
|
+
context.debug = {};
|
|
22
12
|
}
|
|
23
|
-
|
|
24
|
-
}, {
|
|
25
|
-
type: "graphql-before-query",
|
|
26
|
-
|
|
27
|
-
apply({
|
|
28
|
-
context
|
|
29
|
-
}) {
|
|
30
|
-
// Empty logs
|
|
13
|
+
if (!context.debug.logs) {
|
|
31
14
|
context.debug.logs = [];
|
|
32
15
|
}
|
|
33
|
-
|
|
34
|
-
|
|
16
|
+
(0, _interceptConsole.interceptConsole)((method, args) => {
|
|
17
|
+
context.debug.logs.push({
|
|
18
|
+
method,
|
|
19
|
+
args
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
}), {
|
|
35
23
|
type: "graphql-after-query",
|
|
36
|
-
|
|
37
24
|
apply({
|
|
38
25
|
result,
|
|
39
26
|
context
|
|
40
27
|
}) {
|
|
41
28
|
result["extensions"] = {
|
|
42
|
-
console: context.debug.logs || []
|
|
29
|
+
console: [...(context.debug.logs || [])]
|
|
43
30
|
};
|
|
31
|
+
if (context.debug.logs) {
|
|
32
|
+
context.debug.logs.length = 0;
|
|
33
|
+
}
|
|
44
34
|
}
|
|
45
|
-
|
|
46
35
|
}];
|
|
36
|
+
exports.default = _default;
|
|
47
37
|
|
|
48
|
-
|
|
38
|
+
//# sourceMappingURL=debugPlugins.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_interceptConsole","require","_api","_default","ContextPlugin","context","debug","logs","interceptConsole","method","args","push","type","apply","result","console","length","exports","default"],"sources":["debugPlugins.ts"],"sourcesContent":["import { interceptConsole } from \"./interceptConsole\";\nimport type { GraphQLAfterQueryPlugin } from \"./types\";\nimport type { Context } from \"@webiny/api/types\";\nimport { ContextPlugin } from \"@webiny/api\";\n\ninterface Log {\n method: string;\n args: any;\n}\ninterface DebugContext extends Context {\n debug: {\n logs?: Log[];\n };\n}\n\nexport default () => [\n new ContextPlugin<DebugContext>(async context => {\n if (!context.debug) {\n context.debug = {};\n }\n\n if (!context.debug.logs) {\n context.debug.logs = [];\n }\n\n interceptConsole((method, args) => {\n (context.debug.logs as Log[]).push({ method, args });\n });\n }),\n {\n type: \"graphql-after-query\",\n apply({ result, context }) {\n result[\"extensions\"] = { console: [...(context.debug.logs || [])] };\n if (context.debug.logs) {\n context.debug.logs.length = 0;\n }\n }\n } as GraphQLAfterQueryPlugin<DebugContext>\n];\n"],"mappings":";;;;;;AAAA,IAAAA,iBAAA,GAAAC,OAAA;AAGA,IAAAC,IAAA,GAAAD,OAAA;AAA4C,IAAAE,QAAA,GAY7BA,CAAA,KAAM,CACjB,IAAIC,kBAAa,CAAe,MAAMC,OAAO,IAAI;EAC7C,IAAI,CAACA,OAAO,CAACC,KAAK,EAAE;IAChBD,OAAO,CAACC,KAAK,GAAG,CAAC,CAAC;EACtB;EAEA,IAAI,CAACD,OAAO,CAACC,KAAK,CAACC,IAAI,EAAE;IACrBF,OAAO,CAACC,KAAK,CAACC,IAAI,GAAG,EAAE;EAC3B;EAEA,IAAAC,kCAAgB,EAAC,CAACC,MAAM,EAAEC,IAAI,KAAK;IAC9BL,OAAO,CAACC,KAAK,CAACC,IAAI,CAAWI,IAAI,CAAC;MAAEF,MAAM;MAAEC;IAAK,CAAC,CAAC;EACxD,CAAC,CAAC;AACN,CAAC,CAAC,EACF;EACIE,IAAI,EAAE,qBAAqB;EAC3BC,KAAKA,CAAC;IAAEC,MAAM;IAAET;EAAQ,CAAC,EAAE;IACvBS,MAAM,CAAC,YAAY,CAAC,GAAG;MAAEC,OAAO,EAAE,CAAC,IAAIV,OAAO,CAACC,KAAK,CAACC,IAAI,IAAI,EAAE,CAAC;IAAE,CAAC;IACnE,IAAIF,OAAO,CAACC,KAAK,CAACC,IAAI,EAAE;MACpBF,OAAO,CAACC,KAAK,CAACC,IAAI,CAACS,MAAM,GAAG,CAAC;IACjC;EACJ;AACJ,CAAC,CACJ;AAAAC,OAAA,CAAAC,OAAA,GAAAf,QAAA","ignoreList":[]}
|
package/errors.d.ts
CHANGED
package/errors.js
CHANGED
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.NotFoundError = void 0;
|
|
9
|
-
|
|
10
8
|
var _error = _interopRequireDefault(require("@webiny/error"));
|
|
11
|
-
|
|
12
9
|
class NotFoundError extends _error.default {
|
|
13
10
|
constructor(message = "Not found.") {
|
|
14
11
|
super(message, "NOT_FOUND");
|
|
15
12
|
}
|
|
16
|
-
|
|
17
13
|
}
|
|
14
|
+
exports.NotFoundError = NotFoundError;
|
|
18
15
|
|
|
19
|
-
|
|
16
|
+
//# sourceMappingURL=errors.js.map
|
package/errors.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_error","_interopRequireDefault","require","NotFoundError","WebinyError","constructor","message","exports"],"sources":["errors.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\n\nexport class NotFoundError extends WebinyError {\n constructor(message = \"Not found.\") {\n super(message, \"NOT_FOUND\");\n }\n}\n"],"mappings":";;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEO,MAAMC,aAAa,SAASC,cAAW,CAAC;EAC3CC,WAAWA,CAACC,OAAO,GAAG,YAAY,EAAE;IAChC,KAAK,CAACA,OAAO,EAAE,WAAW,CAAC;EAC/B;AACJ;AAACC,OAAA,CAAAJ,aAAA,GAAAA,aAAA","ignoreList":[]}
|
package/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { GraphQLFieldResolver } from "./types";
|
|
1
|
+
import type { Plugin } from "@webiny/plugins/types";
|
|
2
|
+
import type { HandlerGraphQLOptions } from "./types";
|
|
4
3
|
export * from "./errors";
|
|
5
4
|
export * from "./responses";
|
|
6
|
-
|
|
5
|
+
export * from "./utils";
|
|
6
|
+
export * from "./plugins";
|
|
7
|
+
export * from "./processRequestBody";
|
|
8
|
+
export * from "./createResolverDecorator";
|
|
9
|
+
export * from "./ResolverDecoration";
|
|
10
|
+
declare const _default: (options?: HandlerGraphQLOptions) => Plugin[];
|
|
7
11
|
export default _default;
|
|
8
|
-
export declare const pipe: <TSource = any, TArgs = Record<string, any>, TContext = Context<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(...fns: any[]) => (resolver: import("graphql").GraphQLFieldResolver<TSource, TContext, TArgs>) => any;
|
|
9
|
-
export declare const compose: <TSource = any, TArgs = Record<string, any>, TContext = Context<Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>, Record<string, any>>>(...fns: any[]) => (resolver: import("graphql").GraphQLFieldResolver<TSource, TContext, TArgs>) => any;
|