We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1478c commit 0a799fcCopy full SHA for 0a799fc
1 file changed
docs/configuration.md
@@ -301,7 +301,7 @@ public class GraphQlController :
301
302
static JObject? ParseVariables(string? variables)
303
{
304
- if (variables == null)
+ if (variables is null)
305
306
return null;
307
}
@@ -679,14 +679,14 @@ query ($id: ID!)
679
// websocketClient,
680
// response =>
681
// {
682
-// if (response == null)
+// if (response is null)
683
684
// return;
685
// }
686
687
// Assert.Null(response.Errors);
688
689
-// if (response.Data != null)
+// if (response.Data is not null)
690
691
// resetEvent.Set();
692
0 commit comments