query-baedd74697b09f59586eecc58f92fe01

rq turtle/ttl

Licenses1. Return a graph of the class/subclass relationships for software licenses: ?licenseLabel ORDER BY } } "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . } ?subclassOf P279:wdt ?license { OPTIONAL . Q207621:wd P279:wdt ?license { WHERE ?subclassOf ?licenseLabel ?license DISTINCT SELECT #defaultView:Graph DISTINCT %3Flicense %3FlicenseLabel %3FsubclassOf WHERE {%0A %3Flicense wdt%3AP279 wd%3AQ207621 .%0A OPTIONAL { %3Flicense wdt%3AP279 %3FsubclassOf } .%0A SERVICE wikibase%3Alabel { bd%3AserviceParam wikibase%3Alanguage "en" }%0A}%0AORDER BY %3FlicenseLabel Try it!2. Return a list of software titles, their licenses, and the superclass of licenses to which they belong: } } ."en" language:wikibase serviceParam:bd { label:wikibase SERVICE ?class P279:wdt ?license .?license P275:wdt ?app .Q7397:wd )*P279:wdt/P31:ps/P31:p( ?app { WHERE ?classLabel ?licenseLabel ?appLabel ?app DISTINCT SELECT 3. Create a bubble chart showing the license superclasses with the most software titles assigned to them.

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT DISTINCT  ?license ?licenseLabel (COUNT(?app) AS ?count)

WHERE {
  ?app (p:P31/ps:P31/wdt:P279*) wd:Q7397.
  ?app wdt:P275 ?license.
  ?license wdt:P279 ?class

  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

GROUP BY ?license ?licenseLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?app"):::projected v4("?class") v5("?count") v3("?license"):::projected a1((" ")) a2((" ")) c4(["wd:Q7397"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal v2 --"p:P31"--> a1 a1 --"p:statement/P31"--> a2 a2 --"p:direct/P279"--> c4 v2 --"p:direct/P275"--> v3 v3 --"p:direct/P279"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"count(?app)"/] v2 --o bind1 bind1 --as--o v5