Created
August 18, 2015 17:02
-
-
Save ashepherd/742568e3ccf7fdd1535c to your computer and use it in GitHub Desktop.
This file contains 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
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