Skip to content

Instantly share code, notes, and snippets.

@derofim
Created March 30, 2017 18:30
Show Gist options
  • Save derofim/48942b0d153b4872373b1f40513323a2 to your computer and use it in GitHub Desktop.
Save derofim/48942b0d153b4872373b1f40513323a2 to your computer and use it in GitHub Desktop.
sparql
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://www.semanticweb.org/катерина/ontologies/2017/2/dynamicStructures#>
SELECT ?x ?val ?idx WHERE {
. {?x foaf:belongs foaf:Array1 }
OPTIONAL {?x foaf:value ?val}
OPTIONAL {?x foaf:Index ?idx}
}
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://www.semanticweb.org/катерина/ontologies/2017/2/dynamicStructures#>
SELECT ?x ?val WHERE {
. {?x foaf:belongs foaf:Array1 }
OPTIONAL {?x foaf:value ?val}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment