query-740152b059e389f1cd6290c3b0989b4d

rq turtle/ttl

female form of label SELECT ?item ?itemLabel ?gender ?genderLabel ?profession ?professionLabel ?female_form_of_label 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. } 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 bd: <http://www.bigdata.com/rdf#>
#female form of label
SELECT ?item ?itemLabel ?gender ?genderLabel ?profession ?professionLabel ?female_form_of_label 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. }
  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"):::projected v2("?gender"):::projected v3("?image") v1("?item"):::projected v4("?place") v6("?profession"):::projected c13(["ca,#91;AUTO_LANGUAGE#93;"]):::literal c11(["bd:serviceParam"]):::iri c4(["wd:Q34636"]):::iri c2(["wd:Q1281618"]):::iri v1 --"wdt:P106"--> c2 v1 --"wdt:P135"--> c4 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".-> v6 end subgraph optional5["(optional)"] style optional5 fill:#bbf,stroke-dasharray: 5 5; v6 -."wdt:P2521".-> v7 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end