query-a040f60d8d3099b0493291de1190ab92

rq turtle/ttl

Misc

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription WHERE{  
  VALUES ?libelles { 
    "Klaus Nomi"@en
    "Ray Edenton"@en
  } 
  ?item ?label ?libelles.
  ?item wdt:P31 wd:Q5.
  ?article schema:about ?item .
  ?article schema:inLanguage "en" .
  ?article schema:isPartOf <https://en.wikipedia.org/>. 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }    
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?article") v2("?item"):::projected v3("?label") v1("?libelles") c7([https://en.wikipedia.org/]):::iri c9(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c5(["en"]):::literal bind0[/VALUES ?libelles/] bind0-->v1 bind00([sKlaus Nomi^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind00 --> bind0 bind01([sRay Edenton^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind01 --> bind0 v2 -->v3--> v1 v2 --"wdt:P31"--> c2 v4 --"schema:about"--> v2 v4 --"schema:inLanguage"--> c5 v4 --"schema:isPartOf"--> c7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c5 end