query-904c44acfaf112de16347011e3dcd071
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?subj ?subjLabel WHERE {
?subj wdt:P31 wd:Q5.
?subj wdt:P106 wd:Q21512362 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
ORDER BY ?date
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?date")
v2("?subj"):::projected
c6(["bd:serviceParam"]):::iri
c4(["wd:Q21512362"]):::iri
c2(["wd:Q5"]):::iri
c8(["fr"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P106"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end