mathib
mathib
graphName: 'default' --------------------------------------- **Read query**: ``` SELECT DISTINCT ?s ?title WHERE { { SELECT DISTINCT ?s WHERE { ?s rdf:type ?type . FILTER (?type IN (,,,,)) } LIMIT 30 OFFSET...
hmm, I'm exploring GraphDBs way of dealing with NGs and it's pretty confusing at times. A short summary of the behaviour: * when querying the default graph you'll find all...
Yes, that works only if I don't use dropdown lists. I guess there should be something to order the dropdownlists and then per dropdownlist the properties of that dropdowlist.
Some documentation on the benefits and use of '**extensions'** would be appreciated: what do they do and how can you apply them? In the default reactor.js config, there are some...
Can you give me more hints or an example of where I should place what? Thanks :)
At least with GraphDB, I might have found a workaround but it's specific for GraphDB. It's possible to get the internal GraphDB ID of each URI, BN, literal, etc.: http://graphdb.ontotext.com/documentation/free/query-behaviour.html?highlight=blank%20node...
A more generic solution might be to find blank nodes by matching their projected string. ``` SELECT * WHERE { ?bn ?p ?o . BIND(STR(?bn) AS ?bnString) FILTER(?bnString = "genid-6aa0586592bf40cc83e34d1771ad8adf-0")...
Hi Ali, I've been trying to get my LD-R app to work with the [Linked Data Fragments client](https://github.com/LinkedDataFragments/Client.js) , but connecting them seemed not to work. This is the workflow...
Thanks for your response, Ali! Can you point me to the LD-R code that contains these SPARQL query templates? I found these: https://github.com/ali1k/ld-r/tree/master/services/sparql, but there might be more? But I...
There's also potentially an issue with queries containing IN operator: `body: 'ERROR: Query execution could not start.\n\nThe query is not yet supported\nUnsupported operator: in.\n'`