Skip to content

Instantly share code, notes, and snippets.

@michimau
Last active November 3, 2020 08:36
Show Gist options
  • Save michimau/680c511bbdaad8a16ec93069f898fd35 to your computer and use it in GitHub Desktop.
Save michimau/680c511bbdaad8a16ec93069f898fd35 to your computer and use it in GitHub Desktop.
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