Skip to content

Instantly share code, notes, and snippets.

@ashepherd
Created August 18, 2015 17:02
Show Gist options
  • Save ashepherd/742568e3ccf7fdd1535c to your computer and use it in GitHub Desktop.
Save ashepherd/742568e3ccf7fdd1535c to your computer and use it in GitHub Desktop.
select ?r as ?role ?s as ?subject ?d as ?dataset
WHERE {
GRAPH <http://www.bco-dmo.org/> {
?p dcterms:identifier ?id .
FILTER (str(?id) = '50974')
?r odo:performedBy ?p
FILTER NOT EXISTS { ?r odo:forOrganization ?o . }
?r dcterms:subject ?s .
OPTIONAL {
?s odo:hasDataset ?d
}
}
}
ORDER BY ?r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment