query-d9249b62c3da866c646efbe341bbe19e
TODO
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?Item ?ItemLabel ?Type ?Mouth ?MouthLabel
WHERE
{
VALUES ?Item { wd:Q1497 wd:Q626 wd:Q973 } .
?Item wdt:P31 ?Type; wdt:P403 ?Mouth .
SERVICE wikibase:label { bd:serviceParam wikibase:language "ru" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?Item"):::projected
v3("?Mouth"):::projected
v2("?Type"):::projected
c4(["bd:serviceParam"]):::iri
c6(["ru"]):::literal
bind0[/VALUES ?Item/]
bind0-->v1
bind00(["wd:Q1497"])
bind00 --> bind0
bind01(["wd:Q626"])
bind01 --> bind0
bind02(["wd:Q973"])
bind02 --> bind0
v1 --"wdt:P31"--> v2
v1 --"wdt:P403"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end