query-6ade2e50cdc7ff3758c761d3ebff3142
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?article {
?article schema:about ?item ;
schema:name ?name ;
schema:isPartOf <https://species.wikimedia.org/> .
?item wdt:P236 ?issn .
FILTER (!STRSTARTS(?name, "ISSN"))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v4("?issn")
v3("?item"):::projected
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