Skip to content

Instantly share code, notes, and snippets.

@phlegx
Created June 12, 2012 09:31
Show Gist options
  • Select an option

  • Save phlegx/2916472 to your computer and use it in GitHub Desktop.

Select an option

Save phlegx/2916472 to your computer and use it in GitHub Desktop.
# Gives back only the two items we add
CONSTRUCT { <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdf:type> <gr:datatypeProductOrServiceProperty> . <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdfs:subPropertyOf> <gr:datatypeProductOrServiceProperty> } WHERE { GRAPH <http://example.com/file.owl> { ?s ?p ?o } . }
# Gives back nothing
CONSTRUCT { <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdf:type> <gr:datatypeProductOrServiceProperty> . <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdfs:subPropertyOf> <gr:datatypeProductOrServiceProperty> } WHERE { GRAPH <http://example.com/file.owl> { <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdf:type> <gr:datatypeProductOrServiceProperty> . <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdfs:subPropertyOf> <gr:datatypeProductOrServiceProperty> } . }
# Gives back nothing
CONSTRUCT { ?s ?p ?o } WHERE { GRAPH <http://example.com/file.owl> { <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdf:type> <gr:datatypeProductOrServiceProperty> . <http://rdf4ecommerce.esolda.com/digitalcamera#sensor> <rdfs:subPropertyOf> <gr:datatypeProductOrServiceProperty> } . }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment