query-a26d49f90bbd20475257b27fa85a3741

rq turtle/ttl

ISSN SELECT ?item ?itemLabel WHERE { VALUES ?issn { "0261-3077" "0028-0836" "2535-7492"} ?item wdt:P236 ?issn . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# ISSN
SELECT ?item ?itemLabel 
WHERE 
{
  VALUES ?issn { "0261-3077" "0028-0836" "2535-7492"}
  ?item wdt:P236 ?issn .
  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; v1("?issn") v2("?item"):::projected c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal bind0[/VALUES ?issn/] bind0-->v1 bind00(["0261-3077"]) bind00 --> bind0 bind01(["0028-0836"]) bind01 --> bind0 bind02(["2535-7492"]) bind02 --> bind0 v2 --"wdt:P236"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end