We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f494c commit 26153a3Copy full SHA for 26153a3
include/graphqlservice/GraphQLService.h
@@ -199,9 +199,9 @@ class Base64
199
static char verifyToBase64(uint8_t i);
200
};
201
202
-// Default-nullable types may be wrapped non-null or list types in GraphQL. Since nullability is
203
-// a more special case in C++, we invert the default and apply that modifier instead when the
204
-// non-null wrapper is not present in that part of the wrapper chain.
+// GraphQL types are nullable by default, but they may be wrapped with non-null or list types.
+// Since nullability is a more special case in C++, we invert the default and apply that modifier
+// instead when the non-null wrapper is not present in that part of the wrapper chain.
205
enum class TypeModifier
206
{
207
None,
0 commit comments