query-54ce5050cb3fc16f018e2c75a29fb19c
Get human anatomical part list SELECT ?item ?itemLabel ?TA98 ?TA98_Latin WHERE { ?item wdt:P1323 ?TA98 . ?item wdt:P3982 ?TA98_Latin . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } order by (?item)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Get human anatomical part list
SELECT ?item ?itemLabel ?TA98 ?TA98_Latin WHERE {
?item wdt:P1323 ?TA98 .
?item wdt:P3982 ?TA98_Latin .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
order by (?item)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?TA98"):::projected
v3("?TA98_Latin"):::projected
v1("?item"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P1323"--> v2
v1 --"wdt:P3982"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end