OpenDataNode / odn-box

0 stars 2 forks source link

to create query for virtuoso sparql endpoint editor #29

Closed Jan-Marcek closed 9 years ago

Jan-Marcek commented 9 years ago

Ckan creates rdf resource for dataset. Rdf resource is represented by URL. This url is generated from a template. The template is configured in https://github.com/OpenDataNode/odn-box/blob/master/ckan-ic/production.ini#L143. We have to define some sparql query template (because of solution https://github.com/OpenDataNode/odn-box/issues/6). Our suggested query is select * where {?a ?b ?c}

Please confirm or provide a suitable query for Virtuoso sparql endpoint editor.

sparql_editor_query

tomas-knap commented 9 years ago

Dejme select * where {?s ?p ?o} LIMIT 1000, tedy s tim limitem

Jan-Marcek commented 9 years ago

adjusted

Jan-Marcek commented 9 years ago

I changed my mind: this looks better. select * where {?s ?p ?o} LIMIT 1000

skrchnavy commented 9 years ago

why not SELECT * WHERE {?s ?p ?o} LIMIT 1000 or select * where {?s ?p ?o} limit 1000 ?