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 696f162 commit 6609a8aCopy full SHA for 6609a8a
src/main/kotlin/org/neo4j/graphql/Translator.kt
@@ -25,7 +25,6 @@ class Translator(val schema: GraphQLSchema) {
25
.filter { it.operation == OperationDefinition.Operation.QUERY } // todo variabledefinitions, directives, name
26
.flatMap { it.selectionSet.selections }
27
.filterIsInstance<Field>() // FragmentSpread, InlineFragment
28
- .map { println(it);it }
29
.map { toQuery(it, ctx).with(params) } // arguments, alias, directives, selectionSet
30
return queries
31
}
0 commit comments