query-91433cb8157bae56cdd5c4e180dbbbfc
French wikipedia articles about people using 'they' pronoun
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?itemLabel ?link ?item
WHERE
{
# ?item is a human person
?item wdt:P31 wd:Q5 .
# L371 is "they"
# ?item use they as personal pronon
?item wdt:P6553 wd:L371 .
# ?link is about ?item
?link schema:about ?item .
# ?link is in french
?link schema:inLanguage "fr"
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr" }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?link"):::projected
c9(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c7(["fr"]):::literal
c4(["wd:L371"]):::iri
c11(["en,fr"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P6553"--> c4
v3 --"schema:about"--> v2
v3 --"schema:inLanguage"--> c7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end