We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
to
PREFIX dct: <http://purl.org/dc/terms/> PREFIX databus: <https://dataid.dbpedia.org/databus#> PREFIX dataid: <http://dataid.dbpedia.org/ns/core#> PREFIX dcat: <http://www.w3.org/ns/dcat#> select ?latestDatasets ?version ?title ?description ?license (count(?dist) as ?nrOfFiles) (sum(?bytesize) as ?sumfilesize) ?account where { ?latestDatasets a databus:Version ; dct:title ?title ; dct:description ?description ; dct:hasVersion ?version ; dct:license ?license ; dct:issued ?issued; dcterms:modified ?modified ; databus:account ?account ; dcat:distribution ?dist . ?dist dcat:byteSize ?bytesize } ORDER BY DESC(?issued) LIMIT 100
feature here is that people can start with this one and then experiment to get what they want.
The text was updated successfully, but these errors were encountered:
Tried this:
VIRT_SPARQL_DEFAULTQUERY: > PREFIX dct: <http://purl.org/dc/terms/> PREFIX databus: <https://dataid.dbpedia.org/databus#> PREFIX dataid: <http://dataid.dbpedia.org/ns/core#> PREFIX dcat: <http://www.w3.org/ns/dcat#> SELECT ?latestDatasets ?version ?title ?description ?license (COUNT(?dist) as ?nrOfFiles) (SUM(?bytesize) as ?sumfilesize) ?account WHERE { ?latestDatasets a databus:Version ; dct:title ?title ; dct:description ?description ; dct:hasVersion ?version ; dct:license ?license ; dct:issued ?issued; dcterms:modified ?modified ; databus:account ?account ; dcat:distribution ?dist . ?dist dcat:byteSize ?bytesize . } ORDER BY DESC(?issued) LIMIT 100
Does not work with the virtuoso.ini, waiting for a response from the virtuoso devs
Sorry, something went wrong.
Multiline queries are currently not supported by virtuoso. This might get worked on in the future. Pushing the issue back to a later milestone.
No branches or pull requests
to
feature here is that people can start with this one and then experiment to get what they want.
The text was updated successfully, but these errors were encountered: