1

我最近正在使用 GraphQL 和 ES6,我在解决自定义消息时遇到了问题,例如“用户已经存在”或“电子邮件已经存在”。我想如何解决这种类型的消息作为响应。当使用拒绝时(“电子邮件已经存在存在”)我得到这样的回应

{
    "data": {
        "Signup": null
    },
    "errors": [
        {
            "message": "Email already exist",
            "locations": [
                {
                    "line": 2,
                    "column": 1
                }
            ]
        }
    ]
}

我只想将消息打印为“电子邮件已存在”,而不是整个报告。请相应地建议我。谢谢

4

0 回答 0