query-384dd9f55fd87c9f59c54c1680fdd89a

rq turtle/ttl

Gib mir alle Konsortien, sortiert nach Anzahl der jeweils beteiligten Konsortialpartner!

Use at

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#>
SELECT ?p ?pLabel ?pDescription ?inception (COUNT(?w) AS ?number) 
WHERE 
{
  ?p wdt:P31 wd:Q98270496 . 
  ?p wdt:P1416 ?w .
    OPTIONAL { ?p wdt:P571 ?inception }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" . }
} GROUP BY ?p ?pLabel ?pDescription ?inception
ORDER BY DESC(?number)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?inception"):::projected v5("?number") v2("?p"):::projected v3("?w"):::projected c8(["de"]):::literal c6(["bd:serviceParam"]):::iri c2(["wd:Q98270496"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P1416"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P571".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?w)"/] v3 --o bind1 bind1 --as--o v5