query-a5a85b69981861e2d6ec553a5f7fdf70

rq turtle/ttl

philosophers with american nationality, without link to dutch wikibooks SELECT ?item ?itemLabel WHERE { ?item wdt:P31 wd:Q5. ?item wdt:P106 wd:Q4964182. #Occupation : philosopher ?item wdt:P27 wd:Q30. #nationality: USA SERVICE wikibase:label { bd:serviceParam wikibase:language "nl,en". } #and the next step is to filter the items with an existing link to nl.wikibooks.org } LIMIT 200

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#>
#philosophers with american nationality, without link to dutch wikibooks
SELECT ?item ?itemLabel WHERE {
  ?item wdt:P31 wd:Q5.
  ?item wdt:P106 wd:Q4964182.  #Occupation : philosopher
  ?item wdt:P27 wd:Q30.     #nationality: USA
  SERVICE wikibase:label { bd:serviceParam wikibase:language "nl,en". }
  #and the next step is to filter the items with an existing link to nl.wikibooks.org
}
LIMIT 200

Query found at

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