Created
June 12, 2012 09:31
-
-
Save phlegx/2916472 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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