You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While many statistical queries are really fast in QLever, selecting distinct graphs does not seem to be one of them at the moment. The official SPARQL spec would require
SELECTDISTINCT ?g WHERE {
GRAPH?g { ?s?p?o}
}
which runs out of memory pretty much immediately.
Stardog also allows this short form, which I like:
SELECT * WHERE {
GRAPH?g {}
}
The text was updated successfully, but these errors were encountered:
While many statistical queries are really fast in QLever, selecting distinct graphs does not seem to be one of them at the moment. The official SPARQL spec would require
which runs out of memory pretty much immediately.
Stardog also allows this short form, which I like:
The text was updated successfully, but these errors were encountered: