query-d708198094d30281bbc93d8adad0d38b

rq turtle/ttl

Employees SELECT ?item ?itemLabel ?field_of_workLabel ?sex_or_genderLabel WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?item wdt:P108 wd:Q2304477. OPTIONAL { ?item wdt:P101 ?field_of_work. } OPTIONAL { ?item wdt:P21 ?sex_or_gender. } } LIMIT 100

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#>
#Employees
SELECT ?item ?itemLabel ?field_of_workLabel ?sex_or_genderLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item wdt:P108 wd:Q2304477.
  OPTIONAL { ?item wdt:P101 ?field_of_work. }
  OPTIONAL { ?item wdt:P21 ?sex_or_gender. }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?field_of_work") v1("?item"):::projected v3("?sex_or_gender") c2(["bd:serviceParam"]):::iri c6(["wd:Q2304477"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P108"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P101".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P21".-> v3 end