query-2513f166ac942074079aa4fde7e9a88d
list all properties of debian SELECT ?prop ?propLabel ?propVal
WHERE { wd:Q7593 ?prop ?propVal . SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . } } LIMIT 1000
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# list all properties of debian
SELECT ?prop ?propLabel ?propVal
WHERE {
wd:Q7593 ?prop ?propVal .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?prop"):::projected
v2("?propVal"):::projected
c3(["bd:serviceParam"]):::iri
c1(["wd:Q7593"]):::iri
c5(["en"]):::literal
c1 -->v1--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end