我想在 Graphql 请求中发送双引号(“)和反斜杠(\),并希望得到它作为响应。
请检查以下示例:
mutation M {
signUp
(
name: "Harsha Vardhan"
username: "Harsha143",
email: "harshavardhan@sample.com",
description: "Cool "boy" \n And good looking."
)
{
_id,
name
username,
email,
description
}
在上面的 Mutation 我想在描述中发送双引号和反斜杠。请指导我克服这一点。
提前致谢。