query-2fd88c92739397670554738e38d34778
German Vereine (Nonprofit Organisations) by Revenue SELECT ?OrgaLabel ?Revenue WHERE { ?Orga wdt:P1454 wd:Q9299236 . # Select German Nonprofit Organisations ?Orga wdt:P2139 ?Revenue . # Select Revenue
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en".} }
ORDER BY DESC(?Revenue) LIMIT 500
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#>
#German Vereine (Nonprofit Organisations) by Revenue
SELECT ?OrgaLabel ?Revenue
WHERE
{
?Orga wdt:P1454 wd:Q9299236 . # Select German Nonprofit Organisations
?Orga wdt:P2139 ?Revenue . # Select Revenue
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en".}
}
ORDER BY DESC(?Revenue)
LIMIT 500
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?Orga")
v1("?Revenue"):::projected
c5(["bd:serviceParam"]):::iri
c2(["wd:Q9299236"]):::iri
c7(["de,en"]):::literal
v2 --"wdt:P1454"--> c2
v2 --"wdt:P2139"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end