Is there a way to pull back the binding names from the results in submitted order? #3583
Answered
by
abrokenjester
nguyenm100
asked this question in
Q&A
-
Say I have a query:
and I execute the parsequery and evaluate functions. upon receiving back the results, can I pull back the binded names (?s, ?p, ?o) in the order they were submitted? Seems I get back a set of bindingnames which doesn't guarantee any iteration order. If I'm looking to display the results in a table, it's a bit confusing if the columns are out of order from the initial query. |
Beta Was this translation helpful? Give feedback.
Answered by
abrokenjester
Jan 8, 2022
Replies: 1 comment 5 replies
-
TupleQueryResult#getBindingNames gives back the binding names, in projection order. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
nguyenm100
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TupleQueryResult#getBindingNames gives back the binding names, in projection order.