query-9d34ee9379d3deaeb17c6aa977e44259

rq turtle/ttl

organization

on focus list of WikiProject OA

with number of employees

and total revenue

SELECT ?item ?itemLabel ?employees ?total_revenue WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?item (wdt:P31/(wdt:P279*)) wd:Q43229; wdt:P5008 wd:Q19794158. OPTIONAL { ?item wdt:P1128 ?employees. } OPTIONAL { ?item wdt:P2139 ?total_revenue. } } ORDER BY ?itemLabel LIMIT 5000

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#>
# organization
# on focus list of WikiProject OA
# with number of employees
# and total revenue

SELECT ?item ?itemLabel ?employees ?total_revenue WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item (wdt:P31/(wdt:P279*)) wd:Q43229;
    wdt:P5008 wd:Q19794158.
  OPTIONAL { ?item wdt:P1128 ?employees. }
  OPTIONAL { ?item wdt:P2139 ?total_revenue. }
}
ORDER BY ?itemLabel
LIMIT 5000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?employees"):::projected v2("?item"):::projected v1("?itemLabel"):::projected v4("?total_revenue"):::projected a1((" ")) c2(["bd:serviceParam"]):::iri c9(["wd:Q19794158"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal c7(["wd:Q43229"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c7 v2 --"wdt:P5008"--> c9 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1128".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P2139".-> v4 end