query-9a3709bed194de85e4f0813ad94d8482
organization
working in the field of open science
with country, board members, founder, motto
SELECT ?item ?itemLabel ?countryLabel ?board_memberLabel ?founded_byLabel ?motto_text WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?item (wdt:P31/(wdt:P279*)) wd:Q43229; wdt:P101 wd:Q309823. OPTIONAL { ?item wdt:P3320 ?board_member. } OPTIONAL { ?item wdt:P17 ?country. } OPTIONAL { ?item wdt:P112 ?founded_by. } OPTIONAL { ?item wdt:P1451 ?motto_text. } } 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#>
# organization
# working in the field of open science
# with country, board members, founder, motto
SELECT ?item ?itemLabel
?countryLabel
?board_memberLabel
?founded_byLabel
?motto_text WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item (wdt:P31/(wdt:P279*)) wd:Q43229;
wdt:P101 wd:Q309823.
OPTIONAL { ?item wdt:P3320 ?board_member. }
OPTIONAL { ?item wdt:P17 ?country. }
OPTIONAL { ?item wdt:P112 ?founded_by. }
OPTIONAL { ?item wdt:P1451 ?motto_text. }
}
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?board_member")
v3("?country")
v4("?founded_by")
v1("?item"):::projected
v5("?motto_text"):::projected
a1((" "))
c7(["wd:Q43229"]):::iri
c9(["wd:Q309823"]):::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
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c7
v1 --"wdt:P101"--> c9
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P3320".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P17".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P112".-> v4
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P1451".-> v5
end