query-3e2b0bb4f6ea57c0acda0016a497a5e0

rq turtle/ttl

Scientific Journals with more than 3 stated ISSNsExamples: Q15749678 Q7257499 17:22, 25 March 2018 (UTC)) talk (Mahdimoqri

Use at

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#>
SELECT ?item ?itemLabel ?count WHERE {
  {
    SELECT ?item (COUNT(DISTINCT ?ISSN) AS ?count) WHERE {
      ?item wdt:P31 wd:Q5633421.
      ?item wdt:P236 ?ISSN
    }
    GROUP BY ?item
  }
  FILTER ( ?count > 3 )
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY DESC(?count) ?itemL

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?ISSN") v5("?count"):::projected v3("?item"):::projected v2("?itemL") c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c3(["wd:Q5633421"]):::iri f0[["?count > '3^^xsd:integer'"]] f0 --> v5 v3 --"wdt:P31"--> c3 v3 --"wdt:P236"--> v4 bind2[/"count(?ISSN)"/] v4 --o bind2 bind2 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end