query-529c1b33fa2e22609e165f66e5cf4f76
Give me all members of NFDI e.V. that have a Twitter account, ordered by number of followers!
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#>
SELECT ?p ?pLabel ?twitteraccount ?follower
WHERE
{
?p wdt:P463 wd:Q105757481 .
OPTIONAL { ?p wdt:P8687 ?follower }
?p wdt:P2002 ?twitteraccount .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY DESC(?follower)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?follower"):::projected
v2("?p"):::projected
v3("?twitteraccount"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q105757481"]):::iri
c8(["de,en"]):::literal
v2 --"wdt:P463"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P8687".-> v1
end
v2 --"wdt:P2002"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end