query-b8dbb6de2f0bb344a81091d67cc840b5
Software1. How many pieces of software are there (this is limited to 50,000 results because query was timing out if unlimited) 50000 LIMIT } } ."en" language:wikibase serviceParam:bd { label:wikibase SERVICE .Q7397:wd )*P279:wdt/P31:ps/P31:p( ?app { WHERE ?appLabel ?app SELECT2. How many pieces of software have minimal set of props
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?app ?appLabel ?url ?devLabel ?osLabel ?lanLabel ?repoLabel ?licenseLabel ?rfflabel ?wffLabel WHERE {
?app (p:P31/ps:P31/wdt:P279*) wd:Q7397.
?app wdt:P856 ?url.
?app wdt:P178 ?dev.
?app wdt:P306 ?os.
?app wdt:P277 ?lan.
?app wdt:P1324 ?repo.
?app wdt:P275 ?license.
?app wdt:P1072 ?rff.
?app wdt:P1073 ?wff.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?app"):::projected
v3("?dev")
v5("?lan")
v7("?license")
v4("?os")
v6("?repo")
v8("?rff")
v2("?url"):::projected
v9("?wff")
a1((" "))
a2((" "))
c16(["en"]):::literal
c4(["wd:Q7397"]):::iri
c14(["bd:serviceParam"]):::iri
v1 --"p:P31"--> a1
a1 --"p:statement/P31"--> a2
a2 --"p:direct/P279"--> c4
v1 --"p:direct/P856"--> v2
v1 --"p:direct/P178"--> v3
v1 --"p:direct/P306"--> v4
v1 --"p:direct/P277"--> v5
v1 --"p:direct/P1324"--> v6
v1 --"p:direct/P275"--> v7
v1 --"p:direct/P1072"--> v8
v1 --"p:direct/P1073"--> v9
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c14 --"wikibase:language"--> c16
end