Appsync-如何从pipleline解析器中的多个函数返回响应

时间:2019-12-26 10:30:06

标签: aws-appsync

input CarInput{ 
    name: String
    brand: String
}

type Car{   
    id: ID  
    name: String    
    brand: String
}

type Vehicle{   
    id: ID  
    carId: Id
}    

type CustomResponse{
    createdCar : Car
    allCars: [Car]
}

type Mutation {
    createCar(input: CarInput): CustomResponse
}

createCar

的附加管道解析器

映射模板之前

{}

1-CreateCarFunction

请求映射模板

{
  "version" : "2017-02-28",
  "operation": "Invoke",
  "payload":{ 
  "body":$util.toJson($context.args.input),
  "resource":"/car",
  "httpmethod":"POST"
  }
}

响应映射模板

$context.result.body

2-CreateVehicleFunction

请求映射模板

{
  "version" : "2017-02-28",
  "operation": "Invoke",
  "payload":{ 
  "body":$util.toJson($ctx.prev.result.id),
  "resource":"/vehicle",
  "httpmethod":"POST"
  }
}

响应映射模板

$context.result.body

3-GetCarsFunction

请求映射模板

{
  "version" : "2017-02-28",
  "operation": "Invoke",
  "payload": {  
  "body":"",
  "resource":"/getCars" ,
  "httpmethod":"GET"
  }
}

响应映射模板

$context.result.body

映射模板后

 $util.toJson($ctx.result)

数据源是Lamda。我将从 CreateCarFunction CreateVehicleFunction GetCarsFunction 中得到三种不同的响应。

mutation{createCar(input:
{
 name: "A6"
 brand: "Audi"
})
 {
   createdCar  
   {
     id
     name
     brand
   }

   allCars
   {
     id
     name
     brand
   }   
 }

我想要这样的回复

{
  "data": {
    "createCar": {
      "createdCar  ": {
                        id : "2"
                        name : "A6"
                        brand : "Audi"
                      },
      "allCars":  [
                     {
                        id : "1"
                        name : "S"
                        brand : "Benz"
                     },
                     {
                        id : "2"
                        name : "A6"
                        brand : "Audi"
                     }
                 ]

          }
}

因此,我需要 CreateCarFunction GetCarsFunction 的响应,以便将 CustomResponse 类型填充为输出。我该如何实现?

1 个答案:

答案 0 :(得分:0)

感谢您提供此问题的所有相关详细信息。通过将输出(在“响应”映射模板中)添加到$ ctx.stash,可以将数据从一个函数传递到下一个函数。 $ ctx.stash是一个可变对象,在管道解析器的整个生命周期中都将保留。

将每个函数的响应映射模板修改为类似

CreateCarFunction

$util.qr($ctx.stash.put("createdCar", $ctx.result.body))
$context.result.body

GetCarsFunction

$util.qr($ctx.stash.put("allCars", $ctx.result.body))
$context.result.body

(第一行将结果添加到存储中。第二行像以前一样返回请求的正文。)

然后在After映射模板中,您可以使用以下方法反序列化结果

$util.toJson($ctx.stash)