You removed getArguments in SelectionSet in 16.1, how should i change my code? #2447
Answered
by
dfa1
knotenpunkt
asked this question in
Q&A
-
query-example
code example in java
That code worked on version 15.0 but not anymore in 16.1, because you removed getArguments on the SelectionSet. greetings knotenpunkt |
Beta Was this translation helpful? Give feedback.
Answered by
dfa1
Dec 21, 2020
Replies: 1 comment
-
perhaps something like: `Long count = (Long) (dfe.getFieldsGroupedByResultKey().get("randomExample").get(0).getArguments().get("count") You may want to dig a bit here: afaa9aa. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
knotenpunkt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
perhaps something like:
`Long count = (Long) (dfe.getFieldsGroupedByResultKey().get("randomExample").get(0).getArguments().get("count")
You may want to dig a bit here: afaa9aa.