query-7bd78dbf1b7b9f45288a396390b9d39b
Companies w LinkedIn company id by the number of software titles developed
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#>
#defaultView:BubbleChart
SELECT ?item ?itemLabel ?linkedin (COUNT(?software) AS ?count) WHERE {
?item wdt:P4264 ?linkedin.
?software wdt:P178 ?item;
(wdt:P31/(wdt:P279*)) wd:Q7397.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?item ?itemLabel ?linkedin
ORDER BY DESC (?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?count")
v2("?item"):::projected
v3("?linkedin"):::projected
v4("?software"):::projected
a1((" "))
c5(["wd:Q7397"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P4264"--> v3
v4 --"wdt:P178"--> v2
v4 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"count(?software)"/]
v4 --o bind1
bind1 --as--o v5