Outputting the input record so that it can be used in later steps.
This commit is contained in:
parent
d39a88e3dd
commit
cfb10ebbe2
|
@ -28,6 +28,11 @@ module.exports.definition = {
|
||||||
},
|
},
|
||||||
outputs: {
|
outputs: {
|
||||||
properties: {
|
properties: {
|
||||||
|
record: {
|
||||||
|
type: "object",
|
||||||
|
customType: "record",
|
||||||
|
description: "The new record",
|
||||||
|
},
|
||||||
response: {
|
response: {
|
||||||
type: "object",
|
type: "object",
|
||||||
description: "The response from the table",
|
description: "The response from the table",
|
||||||
|
@ -69,6 +74,7 @@ module.exports.run = async function({ inputs, instanceId }) {
|
||||||
try {
|
try {
|
||||||
await recordController.save(ctx)
|
await recordController.save(ctx)
|
||||||
return {
|
return {
|
||||||
|
record: inputs.record,
|
||||||
response: ctx.body,
|
response: ctx.body,
|
||||||
id: ctx.body._id,
|
id: ctx.body._id,
|
||||||
revision: ctx.body._rev,
|
revision: ctx.body._rev,
|
||||||
|
|
Loading…
Reference in New Issue