query-fec7f91586aee3ed3b6937cfc02be6a2
female form of label SELECT ?item ?itemLabel ?gender ?genderLabel ?profession ?professionText WHERE { ?item wdt:P106 wd:Q1028181; wdt:P135 wd:Q34636; wdt:P21 wd:Q6581072. 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:Q1028181;
wdt:P135 wd:Q34636;
wdt:P21 wd:Q6581072.
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]". }
}