query-33bba6f5bbddac6ef88529fcfb78bb9e
female form of label
SELECT ?item ?itemLabel ?gender ?genderLabel ?profession ?professionText WHERE {
?item wdt:P106 wd:Q1281618;
wdt:P135 wd:Q34636.
OPTIONAL { ?item wdt:P21 ?gender. }
OPTIONAL { ?item wdt:P18 ?image. }
OPTIONAL { ?item wdt:P19 ?place. }
OPTIONAL { ?item wdt:P569 ?date. }
OPTIONAL
{
?item wdt:P106 ?profession.
OPTIONAL
{
?profession wdt:P2521 ?female_form_of_label.
FILTER (LANG(?female_form_of_label) = "ca")
}
OPTIONAL
{
?profession rdfs:label ?professionLabel.
FILTER (LANG(?professionLabel) = "ca")
}
}
BIND (IF(?gender IN (wd:Q6581072, wd:Q1052281, wd:Q43445) && BOUND(?female_form_of_label),
?female_form_of_label, ?professionLabel) AS ?professionText)
SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,[AUTO_LANGUAGE]". }
}
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#female form of label
SELECT ?item ?itemLabel ?gender ?genderLabel ?profession ?professionText WHERE {
?item wdt:P106 wd:Q1281618;
wdt:P135 wd:Q34636.
OPTIONAL { ?item wdt:P21 ?gender. }
OPTIONAL { ?item wdt:P18 ?image. }
OPTIONAL { ?item wdt:P19 ?place. }
OPTIONAL { ?item wdt:P569 ?date. }
OPTIONAL
{
?item wdt:P106 ?profession.
OPTIONAL
{
?profession wdt:P2521 ?female_form_of_label.
FILTER (LANG(?female_form_of_label) = "ca")
}
OPTIONAL
{
?profession rdfs:label ?professionLabel.
FILTER (LANG(?professionLabel) = "ca")
}
}
BIND (IF(?gender IN (wd:Q6581072, wd:Q1052281, wd:Q43445) && BOUND(?female_form_of_label),
?female_form_of_label, ?professionLabel) AS ?professionText)
SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,[AUTO_LANGUAGE]". }
}