query-9dec7eb1261ed01a3c24c83ed8fbfc79
Give me all subjects!
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?s
WHERE {
?s ?p ?o .
SERVICE wikibase:label {bd:serviceParam wikibase:language "en,de"}
} ORDER BY ASC(?sLabel)
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?o")
v3("?p")
v2("?s"):::projected
v1("?sLabel")
c2(["bd:serviceParam"]):::iri
c4(["en,de"]):::literal
v2 -->v3--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end