query-26187ce52c97aab8339207d9f2311aec
title: List of properties which have instances or subclass of humans as possible value with male and female form in French SELECT ?property ?propertyLabel ?maleform ?femaleform (GROUP_CONCAT(?alias; SEPARATOR = ", ") AS ?aliases) WHERE { ?property p:P2302 ?statement. ?statement ps:P2302 wd:Q21510865; pq:P2308 wd:Q5; pq:P2309 ?relation. ?property rdfs:label ?propertyLabel FILTER((LANG(?propertyLabel)) = "fr"). OPTIONAL { ?property skos:altLabel ?alias FILTER((LANG(?alias)) = "fr"). } OPTIONAL { ?property wdt:P2521 ?femaleform FILTER((LANG(?femaleform)) = "fr"). } OPTIONAL { ?property wdt:P3321 ?maleform FILTER((LANG(?maleform)) = "fr"). } } GROUP BY ?property ?propertyLabel ?maleform ?femaleform
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
#title: List of properties which have instances or subclass of humans as possible value with male and female form in French
SELECT ?property ?propertyLabel ?maleform ?femaleform (GROUP_CONCAT(?alias; SEPARATOR = ", ") AS ?aliases) WHERE {
?property p:P2302 ?statement.
?statement ps:P2302 wd:Q21510865;
pq:P2308 wd:Q5;
pq:P2309 ?relation.
?property rdfs:label ?propertyLabel FILTER((LANG(?propertyLabel)) = "fr").
OPTIONAL {
?property skos:altLabel ?alias
FILTER((LANG(?alias)) = "fr").
}
OPTIONAL {
?property wdt:P2521 ?femaleform
FILTER((LANG(?femaleform)) = "fr").
}
OPTIONAL {
?property wdt:P3321 ?maleform
FILTER((LANG(?maleform)) = "fr").
}
}
GROUP BY ?property ?propertyLabel ?maleform ?femaleform
Query found at
- https://www.wikidata.org/wiki/User:PAC2/Gender_neutral_labels
- https://www.wikidata.org/wiki/User:PAC2/Query/Gender_and_labels_for_properties_whose_values_are_instances_or_subclasses_of_human_in_French