query-88db156eb521ec1dd593f0718ec3d2d1
funding scheme
by country
SELECT ?funding_scheme ?funding_schemeLabel ?countryLabel ?inception ?funding_schemeDescription WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?funding_scheme wdt:P31 wd:Q58684939. OPTIONAL { ?funding_scheme wdt:P17 ?country. } OPTIONAL { ?funding_scheme wdt:P571 ?inception. } } 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#>
# funding scheme
# by country
SELECT ?funding_scheme ?funding_schemeLabel
?countryLabel
?inception
?funding_schemeDescription
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?funding_scheme wdt:P31 wd:Q58684939.
OPTIONAL { ?funding_scheme wdt:P17 ?country. }
OPTIONAL { ?funding_scheme wdt:P571 ?inception. }
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?country")
v1("?funding_scheme"):::projected
v3("?inception"):::projected
c2(["bd:serviceParam"]):::iri
c6(["wd:Q58684939"]):::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"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P17".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P571".-> v3
end