query-17b3826a548fedc3a703540ef639a121
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?item {
?item schema:about ?journal ;
schema:name ?name ;
schema:isPartOf <https://species.wikimedia.org/> .
?journal wdt:P236 ?issn .
FILTER (!STRSTARTS(?name, "ISSN"))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?issn")
v2("?item"):::projected
v3("?journal")
v1("?name")
c5([https://species.wikimedia.org/]):::iri
f0[["not starts-with(?name,'ISSN')"]]
f0 --> v1
v2 --"schema:about"--> v3
v2 --"schema:name"--> v1
v2 --"schema:isPartOf"--> c5
v3 --"wdt:P236"--> v4