query-a86015ef46409aaef3ac0c0862f9e26a
FOSS with sponsor, funder, cost, etc.
SELECT ?item ?itemLabel ?funderLabel ?sponsorLabel ?developerLabel ?maintained_byLabel ?cost ?useLabel ?short_name WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?item wdt:P31 wd:Q506883. OPTIONAL { ?item wdt:P8324 ?funder. } OPTIONAL { ?item wdt:P859 ?sponsor. } OPTIONAL { ?item wdt:P178 ?developer. } OPTIONAL { ?item wdt:P126 ?maintained_by. } OPTIONAL { ?item wdt:P2130 ?cost. } OPTIONAL { ?item wdt:P366 ?use. } OPTIONAL { ?item wdt:P1813 ?short_name. } } ORDER BY (?itemLabel) LIMIT 5000
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#>
# FOSS with sponsor, funder, cost, etc.
SELECT ?item ?itemLabel
?funderLabel ?sponsorLabel
?developerLabel ?maintained_byLabel
?cost
?useLabel ?short_name WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P31 wd:Q506883.
OPTIONAL { ?item wdt:P8324 ?funder. }
OPTIONAL { ?item wdt:P859 ?sponsor. }
OPTIONAL { ?item wdt:P178 ?developer. }
OPTIONAL { ?item wdt:P126 ?maintained_by. }
OPTIONAL { ?item wdt:P2130 ?cost. }
OPTIONAL { ?item wdt:P366 ?use. }
OPTIONAL { ?item wdt:P1813 ?short_name. }
}
ORDER BY (?itemLabel)
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v7("?cost"):::projected
v5("?developer")
v3("?funder")
v2("?item"):::projected
v1("?itemLabel"):::projected
v6("?maintained_by")
v9("?short_name"):::projected
v4("?sponsor")
v8("?use")
c6(["wd:Q506883"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P31"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P8324".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P859".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P178".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P126".-> v6
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2130".-> v7
end
subgraph optional5["(optional)"]
style optional5 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P366".-> v8
end
subgraph optional6["(optional)"]
style optional6 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1813".-> v9
end