query-535c88d69979000f3bd25687f3f6550c
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item ?itemLabel ?pageW
WHERE
{
?item wdt:P380 ?id ; rdfs:label ?itemLabel;
FILTER (lang(?itemLabel) = "fr").
FILTER regex (?id, "^PA").
OPTIONAL {
?pageW schema:about ?item .
?pageW schema:isPartOf <https://fr.wikipedia.org/> .
}
}
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
v4("?pageW"):::projected
c7([https://fr.wikipedia.org/]):::iri
f0[["regex(?id,'^PA')"]]
f0 --> v1
f1[["?itemLabel = 'fr'"]]
f1 --> v2
v3 --"wdt:P380"--> v1
v3 --"rdfs:label"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."schema:about".-> v3
v4 --"schema:isPartOf"--> c7
end