query-ceeed35021415d011fd00b53f96d6d5f
donc ce ne sont pas tous des monuments historiques (identifiants commençant par IA ou EA), en voici donc une autre plus sélective pour avoir uniquement ceux commençant par PA : (P380)Mérimée ID Attention, ce sont tous les éléments ayant la propriété
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item ?itemLabel
WHERE
{
?item wdt:P380 ?id ; rdfs:label ?itemLabel;
FILTER (lang(?itemLabel) = "fr").
FILTER regex (?id, "^PA").
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?id")
v3("?item"):::projected
v2("?itemLabel"):::projected
f0[["regex(?id,'^PA')"]]
f0 --> v1
f1[["?itemLabel = 'fr'"]]
f1 --> v2
v3 --"wdt:P380"--> v1
v3 --"rdfs:label"--> v2