query-4622c18f153290e60fd0ce61f89cb80a

rq turtle/ttl

Yupik

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?l ?lLabel ?sms ?p4119 {
  ?l wdt:P4119 ?p4119 ; # has a P4119
     wdt:P1705 ?sms . # has a P1705
     filter(lang(?sms)="sms") # with language sms
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
} order by ?sms

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?l"):::projected v3("?p4119"):::projected v1("?sms"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal f0[["?sms = 'sms'"]] f0 --> v1 v2 --"wdt:P4119"--> v3 v2 --"wdt:P1705"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end