query-a7a1363f28e4c8e041356e2cf8d5a45c
title: Openly licensed invasion biology publications about hypotheses known to Wikidata
SELECT DISTINCT ?item ?itemLabel ?license ?licenseLabel ?topic ?topicLabel
WHERE {
?item wdt:P6104 wd:Q56241615;
wdt:P356 ?doi ;
wdt:P921 ?topic .
?topic wdt:P31 wd:Q41719 .
?item wdt:P275 ?license .
?license wdt:P31/wdt:P279 wd:Q30939938 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?item ?itemLabel ?license ?licenseLabel ?topic ?topicLabel
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#>
#title: Openly licensed invasion biology publications about hypotheses known to Wikidata
SELECT DISTINCT ?item ?itemLabel ?license ?licenseLabel ?topic ?topicLabel
WHERE {
?item wdt:P6104 wd:Q56241615;
wdt:P356 ?doi ;
wdt:P921 ?topic .
?topic wdt:P31 wd:Q41719 .
?item wdt:P275 ?license .
?license wdt:P31*/wdt:P279* wd:Q30939938 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?item ?itemLabel ?license ?licenseLabel ?topic ?topicLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?doi")
v1("?item"):::projected
v4("?license"):::projected
v3("?topic"):::projected
a1((" "))
c2(["wd:Q56241615"]):::iri
c11(["bd:serviceParam"]):::iri
c9(["wd:Q30939938"]):::iri
c6(["wd:Q41719"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P6104"--> c2
v1 --"wdt:P356"--> v2
v1 --"wdt:P921"--> v3
v3 --"wdt:P31"--> c6
v1 --"wdt:P275"--> v4
v4 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c9
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end