query-1b08491f9ac55c1c812e561efb0766a7

rq turtle/ttl

Humans SELECT ?item ?itemLabel WHERE { #Item Property Value ?item wdt:P31 wd:Q5 . # all the items with instance of value human ?item wdt:P27 wd:Q30 . # and who are citizens of the USA ?item wdt:P106 wd:Q1930187 . #and who are journalists ?item wdt:P19 wd:Q1297 . # who were born in Chicago ?item wdt:P21 wd:Q6581072 . # who are women

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

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#>
#Humans
SELECT ?item ?itemLabel 
WHERE 
{
  #Item Property Value
  ?item wdt:P31 wd:Q5 . # all the items with instance of value human
  ?item wdt:P27 wd:Q30 . # and who are citizens of the USA
  ?item wdt:P106 wd:Q1930187 . #and who are journalists
  ?item wdt:P19 wd:Q1297 . # who were born in Chicago
  ?item wdt:P21 wd:Q6581072 . # who are women

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected c4(["wd:Q30"]):::iri c10(["wd:Q6581072"]):::iri c6(["wd:Q1930187"]):::iri c12(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c14(["#91;AUTO_LANGUAGE#93;,en"]):::literal c8(["wd:Q1297"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P27"--> c4 v1 --"wdt:P106"--> c6 v1 --"wdt:P19"--> c8 v1 --"wdt:P21"--> c10 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end