Last active
November 3, 2020 08:36
-
-
Save michimau/680c511bbdaad8a16ec93069f898fd35 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
SELECT | |
?s | |
?p | |
?o | |
?time | |
WHERE { | |
{ | |
GRAPH ?graph { ?s ?p ?o } . | |
?graph <http://cr.eionet.europa.eu/ontologies/contreg.rdf#lastRefreshed> ?time . | |
FILTER (?s in (<https://biodiversity.europa.eu/countries/united-kingdom>,<https://biodiversity.europa.eu/countries/liechtenstein>)) . | |
FILTER NOT EXISTS { ?o <http://www.w3.org/2000/01/rdf-schema#label> ?o1 } . | |
FILTER NOT EXISTS { ?o <http://purl.org/dc/terms/title> ?o2 } . | |
} UNION { | |
SELECT DISTINCT ?s ?p (str(?label) as ?o) | |
{ | |
?s ?p ?res . | |
FILTER (?s in (<https://biodiversity.europa.eu/countries/united-kingdom>,<https://biodiversity.europa.eu/countries/liechtenstein>)) . | |
{ | |
?res <http://www.w3.org/2000/01/rdf-schema#label> ?label . | |
} UNION { | |
?res <http://purl.org/dc/terms/title> ?label . | |
} | |
}} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment