query-a4e8dd8bd7c25def744f7427cfb5245f
Focus list items, no license, no PMCID, having DOI
SELECT ?item ?itemLabel ?doi
WHERE {?item wdt:P31 wd:Q13442814;
wdt:P5008 wd:Q55439927;
wdt:P356 ?doi.
MINUS {?item wdt:P932 [ ]}.
MINUS {?item wdt:P275 [ ]}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
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#>
#Focus list items, no license, no PMCID, having DOI
SELECT ?item ?itemLabel ?doi
WHERE {?item wdt:P31 wd:Q13442814;
wdt:P5008 wd:Q55439927;
wdt:P356 ?doi.
MINUS {?item wdt:P932 [ ]}.
MINUS {?item wdt:P275 [ ]}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?doi"):::projected
v1("?item"):::projected
a1((" "))
a2((" "))
c2(["wd:Q13442814"]):::iri
c9(["bd:serviceParam"]):::iri
c4(["wd:Q55439927"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P5008"--> c4
v1 --"wdt:P356"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P932"--> a1
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P275"--> a2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end