I want to send double quote(") and back slash(\ ) in Graphql request and want to get it back in response.
Please check bellow example:
mutation M {
signUp
(
name: "Harsha Vardhan"
username: "Harsha143",
email: "[email protected]",
description: "Cool "boy" \n And good looking."
)
{
_id,
name
username,
email,
description
}
In above Mutation I want to send double quotes and back slash in description. Please guide me to overcome this.
Thanks in advance.
"Cool \"boy\" \\n And good looking."
– Agminate