var request = new GraphQLRequest
{
Query = @"
mutation {
login(email: "{email}", password: "{password}") {
userId,
accessToken
}
}"
};
I am coding with GraphQL with C#
I want to insert "{email}" and "{password}" in string, But above code is not work properly :(
How I solve this..? Please help me