query-175baa7b48c6d70048a6a37e1f339e91
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 ?Marathi ?MarathiLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "mr,en". }
?Marathi wdt:P407 wd:Q1571.
}
ORDER BY ?MarathiLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?Marathi"):::projected
v1("?MarathiLabel"):::projected
c2(["bd:serviceParam"]):::iri
c4(["mr,en"]):::literal
c6(["wd:Q1571"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P407"--> c6