Ok, here is another Tableau developer request. The sparql select query returns just four columns and and lots of rows. The last two columns are called key and value - which is actually a property (such as book:title, book:description) and object (such as "A book title", "a sample book description"). I have lots of properties so I am am trying to avoid a very long sparql query.
How do I re-write the sparql query without including variable for each property type?
(I understand that such sparql query will return lots of NULLS wich Tableau is ok with)
If my question is not clear enough I can provide an example.
BTW:
What is the Stardog limitation of sparql query length?
If that's not what you meant, please provide an example.
If that is a correct example, short answer: You can't create columns from variables in SPARQL. That is impossible, at least in standard SPARQL. All columns have to be specified in the projection part of a query.