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 fa89188 commit 447ff95Copy full SHA for 447ff95
src/main/kotlin/com/expedia/graphql/schema/extensions/graphQLTypeExtensions.kt
@@ -10,7 +10,7 @@ import kotlin.reflect.KType
10
* Renders a readable string from the given graphql type no matter how deeply nested
11
* Eg: [[Int!]]!
12
*/
13
-internal val GraphQLType.deepName: String
+val GraphQLType.deepName: String
14
get() = when {
15
this is GraphQLNonNull -> "${this.wrappedType.deepName}!"
16
this is GraphQLList -> "[${this.wrappedType.deepName}]"
0 commit comments