query-46315ed83d2800bf1ecde9ed4fe10f39
TODO
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#>
SELECT ?elemento ?elementoLabel ?schema
WHERE { ?elemento wdt:P1709 ?schema .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?elemento"):::projected
v2("?schema"):::projected
c3(["bd:serviceParam"]):::iri
c5(["it,en"]):::literal
v1 --"wdt:P1709"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end