query-b3a570bf49aed71fcd969450d2a0f4a0
TimeOut QueryHello, I'm experiencing a T.Out with that :
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label_en ?label_fr WHERE {
?item wdt:P31/wdt:P279* wd:Q47150325.
optional {?item rdfs:label ?label_en filter (lang(?label_en) = "en").}
optional{ ?item rdfs:label ?label_fr filter (lang(?label_fr) = "fr").}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v2("?label_en"):::projected
v1("?label_fr"):::projected
a1((" "))
c5(["wd:Q47150325"]):::iri
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v1
end