-
Notifications
You must be signed in to change notification settings - Fork 43
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
When prettifying a mutation, the mutation keyword is removed from the output.
public static string Prettify(string query)
{
var document = Parser.Parse(query);
return new SDLPrinter().Print(document);
}
string query = Prettify("""
mutation {
bulkOperationCancel {
bulkOperation {
id
}
}
}
""");Result:
{
bulkOperationCancel {
bulkOperation {
id
}
}
}Originally posted by @clement911 in #365 (comment)
clement911
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working