@aws-amplify/graphql-model-transformer 0.9.2 → 0.10.0-apiext1.0
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/CHANGELOG.md +11 -0
- package/lib/graphql-model-transformer.js +77 -77
- package/lib/graphql-model-transformer.js.map +1 -1
- package/lib/graphql-types/common.js +10 -10
- package/lib/graphql-types/common.js.map +1 -1
- package/lib/graphql-types/mutation.js +3 -3
- package/lib/graphql-types/mutation.js.map +1 -1
- package/lib/graphql-types/query.js +1 -1
- package/lib/graphql-types/query.js.map +1 -1
- package/lib/resolvers/common.js +19 -19
- package/lib/resolvers/common.js.map +1 -1
- package/lib/resolvers/mutation.js +128 -128
- package/lib/resolvers/mutation.js.map +1 -1
- package/lib/resolvers/query.js +69 -69
- package/lib/resolvers/query.js.map +1 -1
- package/lib/resolvers/subscriptions.js +4 -4
- package/lib/resolvers/subscriptions.js.map +1 -1
- package/lib/wrappers/object-definition-wrapper.js +5 -5
- package/lib/wrappers/object-definition-wrapper.js.map +1 -1
- package/package.json +7 -4
- package/src/__tests__/__snapshots__/model-transformer-override.test.ts.snap +3009 -0
- package/src/__tests__/model-transformer-override.test.ts +41 -0
- package/src/__tests__/model-transformer.test.ts +13 -22
- package/src/__tests__/overrides/build/override.js +8 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -5,201 +5,201 @@ const graphql_mapping_template_1 = require("graphql-mapping-template");
|
|
|
5
5
|
const common_1 = require("./common");
|
|
6
6
|
const generateUpdateRequestTemplate = (modelName, isSyncEnabled) => {
|
|
7
7
|
const objectKeyVariable = 'ctx.stash.metadata.modelObjectKey';
|
|
8
|
-
const keyFields = [graphql_mapping_template_1.str('id')];
|
|
8
|
+
const keyFields = [(0, graphql_mapping_template_1.str)('id')];
|
|
9
9
|
if (isSyncEnabled) {
|
|
10
|
-
keyFields.push(graphql_mapping_template_1.str('_version'));
|
|
11
|
-
keyFields.push(graphql_mapping_template_1.str('_deleted'));
|
|
12
|
-
keyFields.push(graphql_mapping_template_1.str('_lastChangedAt'));
|
|
10
|
+
keyFields.push((0, graphql_mapping_template_1.str)('_version'));
|
|
11
|
+
keyFields.push((0, graphql_mapping_template_1.str)('_deleted'));
|
|
12
|
+
keyFields.push((0, graphql_mapping_template_1.str)('_lastChangedAt'));
|
|
13
13
|
}
|
|
14
14
|
const statements = [
|
|
15
|
-
graphql_mapping_template_1.comment('Set the default values to put request'),
|
|
16
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('mergedValues'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.stash.defaultValues'), graphql_mapping_template_1.obj({}))),
|
|
17
|
-
graphql_mapping_template_1.comment('copy the values from input'),
|
|
18
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('mergedValues.putAll'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.args.input'), graphql_mapping_template_1.obj({})))),
|
|
19
|
-
graphql_mapping_template_1.comment('set the typename'),
|
|
20
|
-
graphql_mapping_template_1.comment('Initialize the vars for creating ddb expression'),
|
|
21
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expNames'), graphql_mapping_template_1.obj({})),
|
|
22
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expValues'), graphql_mapping_template_1.obj({})),
|
|
23
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expSet'), graphql_mapping_template_1.obj({})),
|
|
24
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expAdd'), graphql_mapping_template_1.obj({})),
|
|
25
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expRemove'), graphql_mapping_template_1.list([])),
|
|
26
|
-
graphql_mapping_template_1.ifElse(graphql_mapping_template_1.ref(objectKeyVariable), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('Key'), graphql_mapping_template_1.ref(objectKeyVariable)), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('Key'), graphql_mapping_template_1.obj({ id: graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.dynamodb.toDynamoDB'), graphql_mapping_template_1.ref('ctx.args.input.id')) }))),
|
|
27
|
-
graphql_mapping_template_1.comment('Model key'),
|
|
28
|
-
graphql_mapping_template_1.ifElse(graphql_mapping_template_1.ref(objectKeyVariable), graphql_mapping_template_1.compoundExpression([
|
|
29
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('keyFields'), isSyncEnabled ? graphql_mapping_template_1.list([graphql_mapping_template_1.str('_version'), graphql_mapping_template_1.str('_deleted'), graphql_mapping_template_1.str('_lastChangedAt')]) : graphql_mapping_template_1.list([])),
|
|
30
|
-
graphql_mapping_template_1.forEach(graphql_mapping_template_1.ref('entry'), graphql_mapping_template_1.ref(`${objectKeyVariable}.entrySet()`), [graphql_mapping_template_1.qref('$keyFields.add("$entry.key")')]),
|
|
31
|
-
]), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('keyFields'), graphql_mapping_template_1.list(keyFields))),
|
|
32
|
-
graphql_mapping_template_1.forEach(graphql_mapping_template_1.ref('entry'), graphql_mapping_template_1.ref(`util.map.copyAndRemoveAllKeys($mergedValues, $keyFields).entrySet()`), [
|
|
33
|
-
graphql_mapping_template_1.ifElse(graphql_mapping_template_1.raw('!$util.isNull($ctx.stash.metadata.dynamodbNameOverrideMap) && $ctx.stash.metadata.dynamodbNameOverrideMap.containsKey("$entry.key")'), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('entryKeyAttributeName'), graphql_mapping_template_1.raw('$ctx.stash.metadata.dynamodbNameOverrideMap.get("$entry.key")')), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('entryKeyAttributeName'), graphql_mapping_template_1.raw('$entry.key'))),
|
|
34
|
-
graphql_mapping_template_1.ifElse(graphql_mapping_template_1.ref('util.isNull($entry.value)'), graphql_mapping_template_1.compoundExpression([
|
|
35
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('discard'), graphql_mapping_template_1.ref(`expRemove.add("#$entryKeyAttributeName")`)),
|
|
36
|
-
graphql_mapping_template_1.qref(`$expNames.put("#$entryKeyAttributeName", "$entry.key")`),
|
|
37
|
-
]), graphql_mapping_template_1.compoundExpression([
|
|
38
|
-
graphql_mapping_template_1.qref('$expSet.put("#$entryKeyAttributeName", ":$entryKeyAttributeName")'),
|
|
39
|
-
graphql_mapping_template_1.qref('$expNames.put("#$entryKeyAttributeName", "$entry.key")'),
|
|
40
|
-
graphql_mapping_template_1.qref('$expValues.put(":$entryKeyAttributeName", $util.dynamodb.toDynamoDB($entry.value))'),
|
|
15
|
+
(0, graphql_mapping_template_1.comment)('Set the default values to put request'),
|
|
16
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('mergedValues'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues'), (0, graphql_mapping_template_1.obj)({}))),
|
|
17
|
+
(0, graphql_mapping_template_1.comment)('copy the values from input'),
|
|
18
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('mergedValues.putAll'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.args.input'), (0, graphql_mapping_template_1.obj)({})))),
|
|
19
|
+
(0, graphql_mapping_template_1.comment)('set the typename'),
|
|
20
|
+
(0, graphql_mapping_template_1.comment)('Initialize the vars for creating ddb expression'),
|
|
21
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expNames'), (0, graphql_mapping_template_1.obj)({})),
|
|
22
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expValues'), (0, graphql_mapping_template_1.obj)({})),
|
|
23
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expSet'), (0, graphql_mapping_template_1.obj)({})),
|
|
24
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expAdd'), (0, graphql_mapping_template_1.obj)({})),
|
|
25
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expRemove'), (0, graphql_mapping_template_1.list)([])),
|
|
26
|
+
(0, graphql_mapping_template_1.ifElse)((0, graphql_mapping_template_1.ref)(objectKeyVariable), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('Key'), (0, graphql_mapping_template_1.ref)(objectKeyVariable)), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('Key'), (0, graphql_mapping_template_1.obj)({ id: (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.dynamodb.toDynamoDB'), (0, graphql_mapping_template_1.ref)('ctx.args.input.id')) }))),
|
|
27
|
+
(0, graphql_mapping_template_1.comment)('Model key'),
|
|
28
|
+
(0, graphql_mapping_template_1.ifElse)((0, graphql_mapping_template_1.ref)(objectKeyVariable), (0, graphql_mapping_template_1.compoundExpression)([
|
|
29
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('keyFields'), isSyncEnabled ? (0, graphql_mapping_template_1.list)([(0, graphql_mapping_template_1.str)('_version'), (0, graphql_mapping_template_1.str)('_deleted'), (0, graphql_mapping_template_1.str)('_lastChangedAt')]) : (0, graphql_mapping_template_1.list)([])),
|
|
30
|
+
(0, graphql_mapping_template_1.forEach)((0, graphql_mapping_template_1.ref)('entry'), (0, graphql_mapping_template_1.ref)(`${objectKeyVariable}.entrySet()`), [(0, graphql_mapping_template_1.qref)('$keyFields.add("$entry.key")')]),
|
|
31
|
+
]), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('keyFields'), (0, graphql_mapping_template_1.list)(keyFields))),
|
|
32
|
+
(0, graphql_mapping_template_1.forEach)((0, graphql_mapping_template_1.ref)('entry'), (0, graphql_mapping_template_1.ref)(`util.map.copyAndRemoveAllKeys($mergedValues, $keyFields).entrySet()`), [
|
|
33
|
+
(0, graphql_mapping_template_1.ifElse)((0, graphql_mapping_template_1.raw)('!$util.isNull($ctx.stash.metadata.dynamodbNameOverrideMap) && $ctx.stash.metadata.dynamodbNameOverrideMap.containsKey("$entry.key")'), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('entryKeyAttributeName'), (0, graphql_mapping_template_1.raw)('$ctx.stash.metadata.dynamodbNameOverrideMap.get("$entry.key")')), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('entryKeyAttributeName'), (0, graphql_mapping_template_1.raw)('$entry.key'))),
|
|
34
|
+
(0, graphql_mapping_template_1.ifElse)((0, graphql_mapping_template_1.ref)('util.isNull($entry.value)'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
35
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('discard'), (0, graphql_mapping_template_1.ref)(`expRemove.add("#$entryKeyAttributeName")`)),
|
|
36
|
+
(0, graphql_mapping_template_1.qref)(`$expNames.put("#$entryKeyAttributeName", "$entry.key")`),
|
|
37
|
+
]), (0, graphql_mapping_template_1.compoundExpression)([
|
|
38
|
+
(0, graphql_mapping_template_1.qref)('$expSet.put("#$entryKeyAttributeName", ":$entryKeyAttributeName")'),
|
|
39
|
+
(0, graphql_mapping_template_1.qref)('$expNames.put("#$entryKeyAttributeName", "$entry.key")'),
|
|
40
|
+
(0, graphql_mapping_template_1.qref)('$expValues.put(":$entryKeyAttributeName", $util.dynamodb.toDynamoDB($entry.value))'),
|
|
41
41
|
])),
|
|
42
42
|
]),
|
|
43
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('')),
|
|
44
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.raw('!$expSet.isEmpty()'), graphql_mapping_template_1.compoundExpression([
|
|
45
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('SET')),
|
|
46
|
-
graphql_mapping_template_1.forEach(graphql_mapping_template_1.ref('entry'), graphql_mapping_template_1.ref('expSet.entrySet()'), [
|
|
47
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression $entry.key = $entry.value')),
|
|
48
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('foreach.hasNext()'), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression,'))),
|
|
43
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('')),
|
|
44
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.raw)('!$expSet.isEmpty()'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
45
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('SET')),
|
|
46
|
+
(0, graphql_mapping_template_1.forEach)((0, graphql_mapping_template_1.ref)('entry'), (0, graphql_mapping_template_1.ref)('expSet.entrySet()'), [
|
|
47
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression $entry.key = $entry.value')),
|
|
48
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('foreach.hasNext()'), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression,'))),
|
|
49
49
|
]),
|
|
50
50
|
])),
|
|
51
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.raw('!$expAdd.isEmpty()'), graphql_mapping_template_1.compoundExpression([
|
|
52
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression ADD')),
|
|
53
|
-
graphql_mapping_template_1.forEach(graphql_mapping_template_1.ref('entry'), graphql_mapping_template_1.ref('expAdd.entrySet()'), [
|
|
54
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression $entry.key $entry.value')),
|
|
55
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('foreach.hasNext()'), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression,'))),
|
|
51
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.raw)('!$expAdd.isEmpty()'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
52
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression ADD')),
|
|
53
|
+
(0, graphql_mapping_template_1.forEach)((0, graphql_mapping_template_1.ref)('entry'), (0, graphql_mapping_template_1.ref)('expAdd.entrySet()'), [
|
|
54
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression $entry.key $entry.value')),
|
|
55
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('foreach.hasNext()'), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression,'))),
|
|
56
56
|
]),
|
|
57
57
|
])),
|
|
58
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.raw('!$expRemove.isEmpty()'), graphql_mapping_template_1.compoundExpression([
|
|
59
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression REMOVE')),
|
|
60
|
-
graphql_mapping_template_1.forEach(graphql_mapping_template_1.ref('entry'), graphql_mapping_template_1.ref('expRemove'), [
|
|
61
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression $entry')),
|
|
62
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('foreach.hasNext()'), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('expression'), graphql_mapping_template_1.str('$expression,'))),
|
|
58
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.raw)('!$expRemove.isEmpty()'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
59
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression REMOVE')),
|
|
60
|
+
(0, graphql_mapping_template_1.forEach)((0, graphql_mapping_template_1.ref)('entry'), (0, graphql_mapping_template_1.ref)('expRemove'), [
|
|
61
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression $entry')),
|
|
62
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('foreach.hasNext()'), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('expression'), (0, graphql_mapping_template_1.str)('$expression,'))),
|
|
63
63
|
]),
|
|
64
64
|
])),
|
|
65
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('update'), graphql_mapping_template_1.obj({})),
|
|
66
|
-
graphql_mapping_template_1.qref('$update.put("expression", "$expression")'),
|
|
67
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.raw('!$expNames.isEmpty()'), graphql_mapping_template_1.qref('$update.put("expressionNames", $expNames)')),
|
|
68
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.raw('!$expValues.isEmpty()'), graphql_mapping_template_1.qref('$update.put("expressionValues", $expValues)')),
|
|
65
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('update'), (0, graphql_mapping_template_1.obj)({})),
|
|
66
|
+
(0, graphql_mapping_template_1.qref)('$update.put("expression", "$expression")'),
|
|
67
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.raw)('!$expNames.isEmpty()'), (0, graphql_mapping_template_1.qref)('$update.put("expressionNames", $expNames)')),
|
|
68
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.raw)('!$expValues.isEmpty()'), (0, graphql_mapping_template_1.qref)('$update.put("expressionValues", $expValues)')),
|
|
69
69
|
...generateKeyConditionTemplate(true),
|
|
70
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('context.args.condition'), graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.conditions.add'), graphql_mapping_template_1.ref('context.args.condition')))),
|
|
71
|
-
common_1.generateConditionSlot('ctx.stash.conditions', 'Conditions'),
|
|
72
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('UpdateItem'), graphql_mapping_template_1.obj({
|
|
73
|
-
version: graphql_mapping_template_1.str('2018-05-29'),
|
|
74
|
-
operation: graphql_mapping_template_1.str('UpdateItem'),
|
|
75
|
-
key: graphql_mapping_template_1.ref('Key'),
|
|
76
|
-
update: graphql_mapping_template_1.ref('update'),
|
|
77
|
-
...(isSyncEnabled && { _version: graphql_mapping_template_1.ref('util.defaultIfNull($ctx.args.input["_version"], "0")') }),
|
|
70
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('context.args.condition'), (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.conditions.add'), (0, graphql_mapping_template_1.ref)('context.args.condition')))),
|
|
71
|
+
(0, common_1.generateConditionSlot)('ctx.stash.conditions', 'Conditions'),
|
|
72
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('UpdateItem'), (0, graphql_mapping_template_1.obj)({
|
|
73
|
+
version: (0, graphql_mapping_template_1.str)('2018-05-29'),
|
|
74
|
+
operation: (0, graphql_mapping_template_1.str)('UpdateItem'),
|
|
75
|
+
key: (0, graphql_mapping_template_1.ref)('Key'),
|
|
76
|
+
update: (0, graphql_mapping_template_1.ref)('update'),
|
|
77
|
+
...(isSyncEnabled && { _version: (0, graphql_mapping_template_1.ref)('util.defaultIfNull($ctx.args.input["_version"], "0")') }),
|
|
78
78
|
})),
|
|
79
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('Conditions'), graphql_mapping_template_1.compoundExpression([
|
|
80
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('keyConditionExprNames'), graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('Conditions.expressionNames.putAll'), graphql_mapping_template_1.ref('keyConditionExprNames')))),
|
|
81
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('UpdateItem.put'), graphql_mapping_template_1.str('condition'), graphql_mapping_template_1.ref('Conditions'))),
|
|
79
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('Conditions'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
80
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('keyConditionExprNames'), (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('Conditions.expressionNames.putAll'), (0, graphql_mapping_template_1.ref)('keyConditionExprNames')))),
|
|
81
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('UpdateItem.put'), (0, graphql_mapping_template_1.str)('condition'), (0, graphql_mapping_template_1.ref)('Conditions'))),
|
|
82
82
|
])),
|
|
83
|
-
graphql_mapping_template_1.toJson(graphql_mapping_template_1.ref('UpdateItem')),
|
|
83
|
+
(0, graphql_mapping_template_1.toJson)((0, graphql_mapping_template_1.ref)('UpdateItem')),
|
|
84
84
|
];
|
|
85
|
-
return graphql_mapping_template_1.printBlock(`${modelName} Update resolver`)(graphql_mapping_template_1.compoundExpression(statements));
|
|
85
|
+
return (0, graphql_mapping_template_1.printBlock)(`${modelName} Update resolver`)((0, graphql_mapping_template_1.compoundExpression)(statements));
|
|
86
86
|
};
|
|
87
87
|
exports.generateUpdateRequestTemplate = generateUpdateRequestTemplate;
|
|
88
88
|
const generateCreateRequestTemplate = (modelName) => {
|
|
89
89
|
const statements = [
|
|
90
|
-
graphql_mapping_template_1.comment('Set the default values to put request'),
|
|
91
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('mergedValues'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.stash.defaultValues'), graphql_mapping_template_1.obj({}))),
|
|
92
|
-
graphql_mapping_template_1.comment('copy the values from input'),
|
|
93
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('mergedValues.putAll'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.args.input'), graphql_mapping_template_1.obj({})))),
|
|
94
|
-
graphql_mapping_template_1.comment('set the typename'),
|
|
95
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('mergedValues.put'), graphql_mapping_template_1.str('__typename'), graphql_mapping_template_1.str(modelName))),
|
|
96
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('PutObject'), graphql_mapping_template_1.obj({
|
|
97
|
-
version: graphql_mapping_template_1.str('2018-05-29'),
|
|
98
|
-
operation: graphql_mapping_template_1.str('PutItem'),
|
|
99
|
-
attributeValues: graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.dynamodb.toMapValues'), graphql_mapping_template_1.ref('mergedValues')),
|
|
100
|
-
condition: graphql_mapping_template_1.ref('condition'),
|
|
90
|
+
(0, graphql_mapping_template_1.comment)('Set the default values to put request'),
|
|
91
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('mergedValues'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues'), (0, graphql_mapping_template_1.obj)({}))),
|
|
92
|
+
(0, graphql_mapping_template_1.comment)('copy the values from input'),
|
|
93
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('mergedValues.putAll'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.args.input'), (0, graphql_mapping_template_1.obj)({})))),
|
|
94
|
+
(0, graphql_mapping_template_1.comment)('set the typename'),
|
|
95
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('mergedValues.put'), (0, graphql_mapping_template_1.str)('__typename'), (0, graphql_mapping_template_1.str)(modelName))),
|
|
96
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('PutObject'), (0, graphql_mapping_template_1.obj)({
|
|
97
|
+
version: (0, graphql_mapping_template_1.str)('2018-05-29'),
|
|
98
|
+
operation: (0, graphql_mapping_template_1.str)('PutItem'),
|
|
99
|
+
attributeValues: (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.dynamodb.toMapValues'), (0, graphql_mapping_template_1.ref)('mergedValues')),
|
|
100
|
+
condition: (0, graphql_mapping_template_1.ref)('condition'),
|
|
101
101
|
})),
|
|
102
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('context.args.condition'), graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.conditions.add'), graphql_mapping_template_1.ref('context.args.condition')))),
|
|
102
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('context.args.condition'), (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.conditions.add'), (0, graphql_mapping_template_1.ref)('context.args.condition')))),
|
|
103
103
|
...generateKeyConditionTemplate(false),
|
|
104
|
-
common_1.generateConditionSlot('ctx.stash.conditions', 'Conditions'),
|
|
105
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('Conditions'), graphql_mapping_template_1.compoundExpression([
|
|
106
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('keyConditionExprNames'), graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('Conditions.expressionNames.putAll'), graphql_mapping_template_1.ref('keyConditionExprNames')))),
|
|
107
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('PutObject.put'), graphql_mapping_template_1.str('condition'), graphql_mapping_template_1.ref('Conditions'))),
|
|
104
|
+
(0, common_1.generateConditionSlot)('ctx.stash.conditions', 'Conditions'),
|
|
105
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('Conditions'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
106
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('keyConditionExprNames'), (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('Conditions.expressionNames.putAll'), (0, graphql_mapping_template_1.ref)('keyConditionExprNames')))),
|
|
107
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('PutObject.put'), (0, graphql_mapping_template_1.str)('condition'), (0, graphql_mapping_template_1.ref)('Conditions'))),
|
|
108
108
|
])),
|
|
109
|
-
graphql_mapping_template_1.ifElse(graphql_mapping_template_1.ref('ctx.stash.metadata.modelObjectKey'), graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('PutObject.put'), graphql_mapping_template_1.str('key'), graphql_mapping_template_1.ref('ctx.stash.metadata.modelObjectKey'))), graphql_mapping_template_1.compoundExpression([
|
|
110
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('Key'), graphql_mapping_template_1.obj({
|
|
111
|
-
id: graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.dynamodb.toDynamoDB'), graphql_mapping_template_1.ref('mergedValues.id')),
|
|
109
|
+
(0, graphql_mapping_template_1.ifElse)((0, graphql_mapping_template_1.ref)('ctx.stash.metadata.modelObjectKey'), (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('PutObject.put'), (0, graphql_mapping_template_1.str)('key'), (0, graphql_mapping_template_1.ref)('ctx.stash.metadata.modelObjectKey'))), (0, graphql_mapping_template_1.compoundExpression)([
|
|
110
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('Key'), (0, graphql_mapping_template_1.obj)({
|
|
111
|
+
id: (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.dynamodb.toDynamoDB'), (0, graphql_mapping_template_1.ref)('mergedValues.id')),
|
|
112
112
|
})),
|
|
113
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('PutObject.put'), graphql_mapping_template_1.str('key'), graphql_mapping_template_1.ref('Key'))),
|
|
113
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('PutObject.put'), (0, graphql_mapping_template_1.str)('key'), (0, graphql_mapping_template_1.ref)('Key'))),
|
|
114
114
|
])),
|
|
115
|
-
graphql_mapping_template_1.toJson(graphql_mapping_template_1.ref('PutObject')),
|
|
115
|
+
(0, graphql_mapping_template_1.toJson)((0, graphql_mapping_template_1.ref)('PutObject')),
|
|
116
116
|
];
|
|
117
|
-
return graphql_mapping_template_1.printBlock('Create Request template')(graphql_mapping_template_1.compoundExpression(statements));
|
|
117
|
+
return (0, graphql_mapping_template_1.printBlock)('Create Request template')((0, graphql_mapping_template_1.compoundExpression)(statements));
|
|
118
118
|
};
|
|
119
119
|
exports.generateCreateRequestTemplate = generateCreateRequestTemplate;
|
|
120
120
|
const generateCreateInitSlotTemplate = (name, modelConfig) => {
|
|
121
121
|
const statements = [
|
|
122
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.put'), graphql_mapping_template_1.str('defaultValues'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.stash.defaultValues'), graphql_mapping_template_1.obj({})))),
|
|
122
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.put'), (0, graphql_mapping_template_1.str)('defaultValues'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues'), (0, graphql_mapping_template_1.obj)({})))),
|
|
123
123
|
];
|
|
124
124
|
if (modelConfig === null || modelConfig === void 0 ? void 0 : modelConfig.timestamps) {
|
|
125
|
-
statements.push(graphql_mapping_template_1.set(graphql_mapping_template_1.ref('createdAt'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.time.nowISO8601'))));
|
|
126
|
-
statements.push(graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.defaultValues.put'), graphql_mapping_template_1.str('id'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.autoId')))));
|
|
125
|
+
statements.push((0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('createdAt'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.time.nowISO8601'))));
|
|
126
|
+
statements.push((0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues.put'), (0, graphql_mapping_template_1.str)('id'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.autoId')))));
|
|
127
127
|
if (modelConfig.timestamps.createdAt) {
|
|
128
|
-
statements.push(graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.defaultValues.put'), graphql_mapping_template_1.str(modelConfig.timestamps.createdAt), graphql_mapping_template_1.ref('createdAt'))));
|
|
128
|
+
statements.push((0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues.put'), (0, graphql_mapping_template_1.str)(modelConfig.timestamps.createdAt), (0, graphql_mapping_template_1.ref)('createdAt'))));
|
|
129
129
|
}
|
|
130
130
|
if (modelConfig.timestamps.updatedAt) {
|
|
131
|
-
statements.push(graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.defaultValues.put'), graphql_mapping_template_1.str(modelConfig.timestamps.updatedAt), graphql_mapping_template_1.ref('createdAt'))));
|
|
131
|
+
statements.push((0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues.put'), (0, graphql_mapping_template_1.str)(modelConfig.timestamps.updatedAt), (0, graphql_mapping_template_1.ref)('createdAt'))));
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
|
-
statements.push(graphql_mapping_template_1.toJson(graphql_mapping_template_1.obj({
|
|
135
|
-
version: graphql_mapping_template_1.str('2018-05-29'),
|
|
136
|
-
payload: graphql_mapping_template_1.obj({}),
|
|
134
|
+
statements.push((0, graphql_mapping_template_1.toJson)((0, graphql_mapping_template_1.obj)({
|
|
135
|
+
version: (0, graphql_mapping_template_1.str)('2018-05-29'),
|
|
136
|
+
payload: (0, graphql_mapping_template_1.obj)({}),
|
|
137
137
|
})));
|
|
138
|
-
return graphql_mapping_template_1.printBlock('Initialization default values')(graphql_mapping_template_1.compoundExpression(statements));
|
|
138
|
+
return (0, graphql_mapping_template_1.printBlock)('Initialization default values')((0, graphql_mapping_template_1.compoundExpression)(statements));
|
|
139
139
|
};
|
|
140
140
|
exports.generateCreateInitSlotTemplate = generateCreateInitSlotTemplate;
|
|
141
141
|
const generateDeleteRequestTemplate = (isSyncEnabled) => {
|
|
142
142
|
const statements = [
|
|
143
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('DeleteRequest'), graphql_mapping_template_1.obj({
|
|
144
|
-
version: graphql_mapping_template_1.str('2018-05-29'),
|
|
145
|
-
operation: graphql_mapping_template_1.str('DeleteItem'),
|
|
143
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('DeleteRequest'), (0, graphql_mapping_template_1.obj)({
|
|
144
|
+
version: (0, graphql_mapping_template_1.str)('2018-05-29'),
|
|
145
|
+
operation: (0, graphql_mapping_template_1.str)('DeleteItem'),
|
|
146
146
|
})),
|
|
147
|
-
graphql_mapping_template_1.ifElse(graphql_mapping_template_1.ref('ctx.stash.metadata.modelObjectKey'), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('Key'), graphql_mapping_template_1.ref('ctx.stash.metadata.modelObjectKey')), graphql_mapping_template_1.set(graphql_mapping_template_1.ref('Key'), graphql_mapping_template_1.obj({ id: graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.dynamodb.toDynamoDB'), graphql_mapping_template_1.ref('ctx.args.input.id')) }))),
|
|
148
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('DeleteRequest.put'), graphql_mapping_template_1.str('key'), graphql_mapping_template_1.ref('Key'))),
|
|
147
|
+
(0, graphql_mapping_template_1.ifElse)((0, graphql_mapping_template_1.ref)('ctx.stash.metadata.modelObjectKey'), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('Key'), (0, graphql_mapping_template_1.ref)('ctx.stash.metadata.modelObjectKey')), (0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('Key'), (0, graphql_mapping_template_1.obj)({ id: (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.dynamodb.toDynamoDB'), (0, graphql_mapping_template_1.ref)('ctx.args.input.id')) }))),
|
|
148
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('DeleteRequest.put'), (0, graphql_mapping_template_1.str)('key'), (0, graphql_mapping_template_1.ref)('Key'))),
|
|
149
149
|
...generateKeyConditionTemplate(true),
|
|
150
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('context.args.condition'), graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.conditions.add'), graphql_mapping_template_1.ref('context.args.condition')))),
|
|
151
|
-
common_1.generateConditionSlot('ctx.stash.conditions', 'Conditions'),
|
|
152
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('Conditions'), graphql_mapping_template_1.compoundExpression([
|
|
153
|
-
graphql_mapping_template_1.iff(graphql_mapping_template_1.ref('keyConditionExprNames'), graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('Conditions.expressionNames.putAll'), graphql_mapping_template_1.ref('keyConditionExprNames')))),
|
|
154
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('DeleteRequest.put'), graphql_mapping_template_1.str('condition'), graphql_mapping_template_1.ref('Conditions'))),
|
|
150
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('context.args.condition'), (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.conditions.add'), (0, graphql_mapping_template_1.ref)('context.args.condition')))),
|
|
151
|
+
(0, common_1.generateConditionSlot)('ctx.stash.conditions', 'Conditions'),
|
|
152
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('Conditions'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
153
|
+
(0, graphql_mapping_template_1.iff)((0, graphql_mapping_template_1.ref)('keyConditionExprNames'), (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('Conditions.expressionNames.putAll'), (0, graphql_mapping_template_1.ref)('keyConditionExprNames')))),
|
|
154
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('DeleteRequest.put'), (0, graphql_mapping_template_1.str)('condition'), (0, graphql_mapping_template_1.ref)('Conditions'))),
|
|
155
155
|
])),
|
|
156
156
|
];
|
|
157
157
|
if (isSyncEnabled) {
|
|
158
|
-
statements.push(graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('DeleteRequest.put'), graphql_mapping_template_1.str('_version'), graphql_mapping_template_1.ref('util.defaultIfNull($ctx.args.input["_version"], "0")'))));
|
|
158
|
+
statements.push((0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('DeleteRequest.put'), (0, graphql_mapping_template_1.str)('_version'), (0, graphql_mapping_template_1.ref)('util.defaultIfNull($ctx.args.input["_version"], "0")'))));
|
|
159
159
|
}
|
|
160
|
-
statements.push(graphql_mapping_template_1.toJson(graphql_mapping_template_1.ref('DeleteRequest')));
|
|
161
|
-
return graphql_mapping_template_1.printBlock('Delete Request template')(graphql_mapping_template_1.compoundExpression(statements));
|
|
160
|
+
statements.push((0, graphql_mapping_template_1.toJson)((0, graphql_mapping_template_1.ref)('DeleteRequest')));
|
|
161
|
+
return (0, graphql_mapping_template_1.printBlock)('Delete Request template')((0, graphql_mapping_template_1.compoundExpression)(statements));
|
|
162
162
|
};
|
|
163
163
|
exports.generateDeleteRequestTemplate = generateDeleteRequestTemplate;
|
|
164
164
|
const generateUpdateInitSlotTemplate = (modelName, modelConfig) => {
|
|
165
165
|
const statements = [
|
|
166
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.put'), graphql_mapping_template_1.str('defaultValues'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.stash.defaultValues'), graphql_mapping_template_1.obj({})))),
|
|
166
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.put'), (0, graphql_mapping_template_1.str)('defaultValues'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues'), (0, graphql_mapping_template_1.obj)({})))),
|
|
167
167
|
];
|
|
168
168
|
if (modelConfig === null || modelConfig === void 0 ? void 0 : modelConfig.timestamps) {
|
|
169
169
|
if (modelConfig.timestamps.updatedAt) {
|
|
170
|
-
statements.push(graphql_mapping_template_1.set(graphql_mapping_template_1.ref('updatedAt'), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.time.nowISO8601'))));
|
|
171
|
-
statements.push(graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.defaultValues.put'), graphql_mapping_template_1.str(modelConfig.timestamps.updatedAt), graphql_mapping_template_1.ref('updatedAt'))));
|
|
170
|
+
statements.push((0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('updatedAt'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.time.nowISO8601'))));
|
|
171
|
+
statements.push((0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues.put'), (0, graphql_mapping_template_1.str)(modelConfig.timestamps.updatedAt), (0, graphql_mapping_template_1.ref)('updatedAt'))));
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
|
-
statements.push(graphql_mapping_template_1.toJson(graphql_mapping_template_1.obj({
|
|
175
|
-
version: graphql_mapping_template_1.str('2018-05-29'),
|
|
176
|
-
payload: graphql_mapping_template_1.obj({}),
|
|
174
|
+
statements.push((0, graphql_mapping_template_1.toJson)((0, graphql_mapping_template_1.obj)({
|
|
175
|
+
version: (0, graphql_mapping_template_1.str)('2018-05-29'),
|
|
176
|
+
payload: (0, graphql_mapping_template_1.obj)({}),
|
|
177
177
|
})));
|
|
178
|
-
return graphql_mapping_template_1.printBlock('Initialization default values')(graphql_mapping_template_1.compoundExpression(statements));
|
|
178
|
+
return (0, graphql_mapping_template_1.printBlock)('Initialization default values')((0, graphql_mapping_template_1.compoundExpression)(statements));
|
|
179
179
|
};
|
|
180
180
|
exports.generateUpdateInitSlotTemplate = generateUpdateInitSlotTemplate;
|
|
181
181
|
function generateApplyDefaultsToInputTemplate(target) {
|
|
182
|
-
return graphql_mapping_template_1.compoundExpression([
|
|
183
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref(target), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.stash.defaultValues'), graphql_mapping_template_1.obj({}))),
|
|
184
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref(`${target}.putAll`), graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('util.defaultIfNull'), graphql_mapping_template_1.ref('ctx.args.input'), graphql_mapping_template_1.obj({})))),
|
|
182
|
+
return (0, graphql_mapping_template_1.compoundExpression)([
|
|
183
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)(target), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues'), (0, graphql_mapping_template_1.obj)({}))),
|
|
184
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)(`${target}.putAll`), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.args.input'), (0, graphql_mapping_template_1.obj)({})))),
|
|
185
185
|
]);
|
|
186
186
|
}
|
|
187
187
|
exports.generateApplyDefaultsToInputTemplate = generateApplyDefaultsToInputTemplate;
|
|
188
188
|
function generateKeyConditionTemplate(attributeExistsValue) {
|
|
189
189
|
const statements = [
|
|
190
|
-
graphql_mapping_template_1.comment('Begin - key condition'),
|
|
191
|
-
graphql_mapping_template_1.ifElse(graphql_mapping_template_1.ref('ctx.stash.metadata.modelObjectKey'), graphql_mapping_template_1.compoundExpression([
|
|
192
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('keyConditionExpr'), graphql_mapping_template_1.obj({})),
|
|
193
|
-
graphql_mapping_template_1.set(graphql_mapping_template_1.ref('keyConditionExprNames'), graphql_mapping_template_1.obj({})),
|
|
194
|
-
graphql_mapping_template_1.forEach(graphql_mapping_template_1.ref('entry'), graphql_mapping_template_1.ref('ctx.stash.metadata.modelObjectKey.entrySet()'), [
|
|
195
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('keyConditionExpr.put'), graphql_mapping_template_1.str('keyCondition$velocityCount'), graphql_mapping_template_1.obj({ attributeExists: graphql_mapping_template_1.bool(attributeExistsValue) }))),
|
|
196
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('keyConditionExprNames.put'), graphql_mapping_template_1.str('#keyCondition$velocityCount'), graphql_mapping_template_1.str('$entry.key'))),
|
|
190
|
+
(0, graphql_mapping_template_1.comment)('Begin - key condition'),
|
|
191
|
+
(0, graphql_mapping_template_1.ifElse)((0, graphql_mapping_template_1.ref)('ctx.stash.metadata.modelObjectKey'), (0, graphql_mapping_template_1.compoundExpression)([
|
|
192
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('keyConditionExpr'), (0, graphql_mapping_template_1.obj)({})),
|
|
193
|
+
(0, graphql_mapping_template_1.set)((0, graphql_mapping_template_1.ref)('keyConditionExprNames'), (0, graphql_mapping_template_1.obj)({})),
|
|
194
|
+
(0, graphql_mapping_template_1.forEach)((0, graphql_mapping_template_1.ref)('entry'), (0, graphql_mapping_template_1.ref)('ctx.stash.metadata.modelObjectKey.entrySet()'), [
|
|
195
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('keyConditionExpr.put'), (0, graphql_mapping_template_1.str)('keyCondition$velocityCount'), (0, graphql_mapping_template_1.obj)({ attributeExists: (0, graphql_mapping_template_1.bool)(attributeExistsValue) }))),
|
|
196
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('keyConditionExprNames.put'), (0, graphql_mapping_template_1.str)('#keyCondition$velocityCount'), (0, graphql_mapping_template_1.str)('$entry.key'))),
|
|
197
197
|
]),
|
|
198
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.conditions.add'), graphql_mapping_template_1.ref('keyConditionExpr'))),
|
|
199
|
-
]), graphql_mapping_template_1.compoundExpression([
|
|
200
|
-
graphql_mapping_template_1.qref(graphql_mapping_template_1.methodCall(graphql_mapping_template_1.ref('ctx.stash.conditions.add'), graphql_mapping_template_1.obj({ id: graphql_mapping_template_1.obj({ attributeExists: graphql_mapping_template_1.bool(attributeExistsValue) }) }))),
|
|
198
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.conditions.add'), (0, graphql_mapping_template_1.ref)('keyConditionExpr'))),
|
|
199
|
+
]), (0, graphql_mapping_template_1.compoundExpression)([
|
|
200
|
+
(0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.conditions.add'), (0, graphql_mapping_template_1.obj)({ id: (0, graphql_mapping_template_1.obj)({ attributeExists: (0, graphql_mapping_template_1.bool)(attributeExistsValue) }) }))),
|
|
201
201
|
])),
|
|
202
|
-
graphql_mapping_template_1.comment('End - key condition'),
|
|
202
|
+
(0, graphql_mapping_template_1.comment)('End - key condition'),
|
|
203
203
|
];
|
|
204
204
|
return statements;
|
|
205
205
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mutation.js","sourceRoot":"","sources":["../../src/resolvers/mutation.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"mutation.js","sourceRoot":"","sources":["../../src/resolvers/mutation.ts"],"names":[],"mappings":"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"}
|