candYgene / queries

SPARQL queries for Web API
Apache License 2.0
0 stars 0 forks source link

Graph IRI enumaration does not work #6

Closed arnikz closed 5 years ago

arnikz commented 5 years ago

https://github.com/candYgene/queries/blob/master/countFeatures.rq

c-martinez commented 5 years ago

I am assuming that ?feature_uri rdfs:label ?feature . should be ?f rdfs:label ?feature .

c-martinez commented 5 years ago

I'll replace the default graph:

FROM ?_graph_iri 
WHERE {
...
}

For graph matching (if that is how this is called):

WHERE {
  GRAPH ?_graph_iri {
...
  }
}

After a quick test, results are the same -- but grlc can replace ?_graph_iri on the graph matching case.