-
Why graphql-java/src/main/java/graphql/util/TraverserContext.java Lines 127 to 136 in 0e6921e What if I have more than one variables of the same type? Why graphql-java/src/main/java/graphql/schema/SchemaTraverser.java Lines 41 to 44 in 0e6921e |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This was just to keep the API a little tighter. Yes strings are excellent keys but they are also poor keys in the sense of knowing that a So we chose class instead
So create a class and put those many things into that class
You will know its your |
Beta Was this translation helpful? Give feedback.
This was just to keep the API a little tighter. Yes strings are excellent keys but they are also poor keys in the sense of knowing that a
CodeRegistry
is available as a var say.So we chose class instead
So create a class and put those many things into that class
You will know its your
ContainerOfThings
class!