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 f38868f commit e8d8d57Copy full SHA for e8d8d57
src/cli.ts
@@ -168,8 +168,11 @@ function makeConvertType(toStrict: boolean) {
168
}
169
170
/**
171
- * Takes a GraphQL type along with levels at which to apply
172
- * semantic-non-null, and returns a converted type with these levels applied.
+ * Takes a GraphQL field config and checks to see if the `@semanticNonNull`
+ * directive was applied; if so, converts to a field config using explicit
173
+ * GraphQLSemanticNonNull wrapper types instead.
174
+ *
175
+ * @see {@url https://www.apollographql.com/docs/kotlin/advanced/nullability/#semanticnonnull}
176
*/
177
function applySemanticNonNullDirective(
178
spec: GraphQLFieldConfig<any, any, any>,
0 commit comments