query-38255a2790da254a822cee3fab320f15
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?instance_ofLabel
WHERE
{
?item rdfs:label "Heart disease"@en .
?item wdt:P31 ?instance_of .
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;
v2("?instance_of")
v1("?item"):::projected
c5(["bd:serviceParam"]):::iri
c2([sHeart disease^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"rdfs:label"--> c2
v1 --"wdt:P31"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end