query-e1afe476a4b35f4e817211042a6d57f9
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?value ?valueLabel WHERE {
{
SELECT DISTINCT ?value WHERE {
[] ps:P27 ?value .
}
}.
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?value"):::projected
a1((" "))
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
a1 --"ps:P27"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end