query-0d443e6d09e71181b900bd3c3f2fc908

rq turtle/ttl

Propertiessex or gender (P21)

Use at

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 ?item ?itemLabel ?article
WHERE
 {
   ?item wdt:P21 wd:Q6581072 .                                                        # Est une femme
    ?article    schema:about ?item ;
            schema:isPartOf <https://fr.wikiquote.org/> .                 # A un article dans wikiquote
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
 }
 LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v1("?item"):::projected c5([https://fr.wikiquote.org/]):::iri c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q6581072"]):::iri v1 --"wdt:P21"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end