query-33be235b8e0efde187fc238a89a79359
open science tool
with use
SELECT ?item ?itemLabel ?itemDescription ?useLabel
?developerLabel ?programming_languageLabel
?owned_byLabel ?operatorLabel ?maintained_byLabel ?sponsorLabel
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P31 wd:Q52990223.
OPTIONAL { ?item wdt:P366 ?use. }
OPTIONAL { ?item wdt:P127 ?owned_by. }
OPTIONAL { ?item wdt:P126 ?maintained_by. }
OPTIONAL { ?item wdt:P137 ?operator. }
OPTIONAL { ?item wdt:P859 ?sponsor. }
OPTIONAL { ?item wdt:P178 ?developer. }
OPTIONAL { ?item wdt:P277 ?programming_language. }
}
ORDER BY (?itemLabel)
LIMIT 1000
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#>
# open science tool
# with use
SELECT ?item ?itemLabel ?itemDescription ?useLabel
?developerLabel ?programming_languageLabel
?owned_byLabel ?operatorLabel ?maintained_byLabel ?sponsorLabel
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P31 wd:Q52990223.
OPTIONAL { ?item wdt:P366 ?use. }
OPTIONAL { ?item wdt:P127 ?owned_by. }
OPTIONAL { ?item wdt:P126 ?maintained_by. }
OPTIONAL { ?item wdt:P137 ?operator. }
OPTIONAL { ?item wdt:P859 ?sponsor. }
OPTIONAL { ?item wdt:P178 ?developer. }
OPTIONAL { ?item wdt:P277 ?programming_language. }
}
ORDER BY (?itemLabel)
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v8("?developer")
v2("?item"):::projected
v1("?itemLabel"):::projected
v5("?maintained_by")
v6("?operator")
v4("?owned_by")
v9("?programming_language")
v7("?sponsor")
v3("?use")
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q52990223"]):::iri
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:P366".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P127".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P126".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P137".-> v6
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P859".-> v7
end
subgraph optional5["(optional)"]
style optional5 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P178".-> v8
end
subgraph optional6["(optional)"]
style optional6 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P277".-> v9
end