如何使用$ util.error在AppSync中发送自定义错误

问题描述 投票:1回答:1

我有一个关于AppSync错误处理的问题。我想发送errorInfo对象以及错误响应,我尝试使用$util.error。根据文件:

https://docs.aws.amazon.com/appsync/latest/devguide/resolver-util-reference.html

$util.error(String, String, Object, Object)

引发自定义错误。如果模板检测到请求或调用结果的错误,则可以在请求或响应映射模板中使用此模板。此外,可以指定errorType字段,数据字段和errorInfo字段。数据值将添加到GraphQL响应中的错误内的相应错误块中。注意:将根据查询选择集过滤数据。 errorInfo值将添加到GraphQL响应中的错误内的相应错误块中。注意:不会根据查询选择集过滤errorInfo。

这是我的响应映射模板的样子:

#if( $context.result && $context.result.errorMessage )
  $utils.error($context.result.errorMessage, $context.result.errorType, $context.result.data), $context.result.errorInfo)
#else
  $utils.toJson($context.result.data)
#end

这是我在解析器上做的:

var result = {
  data: null,
  errorMessage: 'I made this error',
  errorType: 'ALWAYS_ERROR',
  errorInfo: {
    errorCode: 500,
    validations: [
      {
        fieldName: '_',
        result: false,
        reasons: [
          'Failed! Yay!'
        ]
      }
    ],
  }
};
callback(null, result);

这是我在CloudWatch日志中看到的内容:

{
    "errors": [
        "CustomTemplateException(message=I made this error, errorType=ALWAYS_ERROR, data=null, errorInfo={errorCode=500, validations=[{fieldName=_, result=false, reasons=[Failed! Yay!]}]})"
    ],
    "mappingTemplateType": "Response Mapping",
    "path": "[getError]",
    "resolverArn": "arn:aws:appsync:ap-southeast-1:....",
    "context": {
        "arguments": {},
        "result": {
            "errorMessage": "I made this error",
            "errorType": "ALWAYS_ERROR",
            "errorInfo": {
                "errorCode": 500,
                "validations": [
                    {
                        "fieldName": "_",
                        "result": false,
                        "reasons": [
                            "Failed! Yay!"
                        ]
                    }
                ]
            }
        },
        "stash": {},
        "outErrors": []
    },
    "fieldInError": true
}

这是我在回复中得到的:

{
  "data": {
    "getError": null
  },
  "errors": [
    {
      "path": [
        "getError"
      ],
      "data": null,
      "errorType": "ALWAYS_ERROR",
      "errorInfo": null,
      "locations": [
        {
          "line": 2,
          "column": 3,
          "sourceName": null
        }
      ],
      "message": "I made this error"
    }
  ]
}

请注意,errorInfo为null,我有一些如何得到CustomTemplateException。我怀疑这是因为$utils.error的第四个参数。但我不知道为什么。任何人都可以帮助指出错误或告诉我是否可以发送自定义errorInfo

error-handling graphql graphql-js aws-appsync vtl
1个回答
2
投票

事实证明我使用了一些不是最新的教程中的代码。解析器映射模板有两个版本:2018-05-292017-02-28。所以我需要将模板版本更改为2018-05-29才能工作。

RequestMappingTemplate: |
  {
    "version": "2018-05-29",
    "operation": "Invoke",
    "payload": {
      "field": "getError",
      "arguments":  $utils.toJson($context.arguments)
    }
  }

请在此处查看两个版本之间的更改:https://docs.aws.amazon.com/appsync/latest/devguide/resolver-mapping-template-changelog.html#changing-the-version-on-a-function

© www.soinside.com 2019 - 2024. All rights reserved.