woss
09/21/2018, 1:09 PMHere it comes " / ' \s /t
without breaking the server. my guess is that i am doing something wrong with the mutation template. which looks like this:
return client.mutate({
mutation: gql`
mutation {
updateMyself(
data: {
name: "${name}",
givenName: "${givenName}",
familyName: "${familyName}",
username: "${username}",
email: "${email}",
description: "${description}", `Here it comes " / ' \s /t`
}
) {
name
givenName
familyName
}
}
`,
})
woss
09/21/2018, 1:09 PMsyntaxError.mjs:18 Uncaught (in promise) GraphQLError {message: "Syntax Error: Cannot parse the unexpected character "/".",
woss
09/21/2018, 1:10 PMnilan
09/21/2018, 2:21 PMwoss
09/21/2018, 2:37 PM