query-fec7f91586aee3ed3b6937cfc02be6a2

rq turtle/ttl

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

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]". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?date") v7("?female_form_of_label") v2("?gender"):::projected v3("?image") v1("?item"):::projected v4("?place") v8("?profession"):::projected v6("?professionLabel") v9("?professionText"):::projected c16(["ca,#91;AUTO_LANGUAGE#93;"]):::literal c6(["wd:Q6581072"]):::iri c2(["wd:Q1028181"]):::iri c14(["bd:serviceParam"]):::iri c4(["wd:Q34636"]):::iri v1 --"wdt:P106"--> c2 v1 --"wdt:P135"--> c4 v1 --"wdt:P21"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P21".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P19".-> v4 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P569".-> v5 end subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P106".-> v8 subgraph optional5["(optional)"] style optional5 fill:#bbf,stroke-dasharray: 5 5; v8 -."wdt:P2521".-> v7 end subgraph optional6["(optional)"] style optional6 fill:#bbf,stroke-dasharray: 5 5; v8 -."rdfs:label".-> v6 end end list0c2(["wd:Q1052281"]):::iri list0c3(["wd:Q43445"]):::iri list0c1(["wd:Q6581072"]):::iri list0c1 --o bind0 list0c2 --o bind0 list0c3 --o bind0 bind0[/"if( in bound(?female_form_of_label),?female_form_of_label,?professionLabel)"/] v2 --o bind0 v7 --o bind0 v6 --o bind0 bind0 --as--o v9 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c16 end