query-3cfc93d51a7be78f812ea8a2091c8e2e

rq turtle/ttl

Monuments étrangers et trans frontalier (tous pays)Il y a probablement un ménage à faire dans celui-là TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT distinct ?item ?itemLabel ?countryLabel ?designation_countryLabel ?coords where {
  ?item wdt:P1435 ?designation.                 # item has a heritage designation
  ?item wdt:P17 ?country.                       # item has a country
  OPTIONAL {?item wdt:P625 ?coords.}            # item may have coordinates
  # OPTIONAL {?item wdt:P131 ?locn.}            # item may have a located in value
  ?designation wdt:P17 ?designation_country.    # the heritage designation has a country
  filter (?country!=?designation_country)       # the country of the heritage designation is not the listing country
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} order by ?countryLabel ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v7("?coords"):::projected v3("?country") v1("?countryLabel"):::projected v6("?designation") v4("?designation_country") v5("?item"):::projected v2("?itemLabel"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?country != ?designation_country"]] f0 --> v3 f0 --> v4 v5 --"wdt:P1435"--> v6 v5 --"wdt:P17"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v5 -."wdt:P625".-> v7 end v6 --"wdt:P17"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end