Andreas Marek
Andreas Marek
Hi, no .. I don't have anything done with Elm and GraphQL/Relay (I think nobody has) It would be interesting to see how it can work, but I don't have...
@jonatasbaldin thanks ... looks good.
@kaqqao thanks for reporting. That is indeed an interesting case: The general traverser doesn't visit any vertex in a graph twice in order to avoid loops and extra work. But...
@kaqqao to add on this: what is your expectations around duplicate fields? for example: ```graphql { foo { bar} foo {bar}} ``` would you expect that `bar` is visited twice...
@kaqqao I created a new PR which adds an analyzer which produces a "query execution tree": this tree contains all the fields merged together. Have a look at this test:...
@bbakerman your thoughts?
One idea: is to not use MergedField at all inside the collector.
Your first query has the following arguments: ```graphql OR :{ firstName:{EQ:"1"}, firstName:{GT:"2"} } ```` This is an input object with twice the same key: I am not sure we have...
We should consider that a scale it could have a performance impact.
@bbakerman this is probably related to https://github.com/graphql-java/graphql-java/issues/460