query-cd25bb79d8b187a2cb9513da9bf1799a
Anatomické struktury s aliasy
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?struktura ?strukturaLabel ?alias WHERE {
?struktura wdt:P279* wd:Q4936952 .
OPTIONAL {?struktura skos:altLabel ?alias FILTER (LANG (?alias) = "cs")}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "cs"
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?alias"):::projected
v2("?struktura"):::projected
c1(["cs"]):::literal
c6(["bd:serviceParam"]):::iri
c3(["wd:Q4936952"]):::iri
v2 --"wdt:P279"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."skos:altLabel".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c1
end