query-42f72d8aee43e7ce0250b81516f77f11

rq turtle/ttl

Propertiestitle (P1476)instance of (P31)OCLC control number (P243)ISSN (P236)

Use at

PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?titleLabel ?s ?typeLabel ?worldcatURI ?issn
WHERE {
  ?s wdt:P1476 ?title;
     wdt:P31 ?type;
     wdt:P243 ?ocn;
     wdt:P236 ?issn.
  BIND (URI(CONCAT("http://www.worldcat.org/oclc/",?ocn)) AS ?worldcatURI)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?issn ?titleLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?issn"):::projected v6("?ocn") v3("?s"):::projected v4("?title") v2("?titleLabel"):::projected v5("?type") v7("?worldcatURI"):::projected c6(["bd:serviceParam"]):::iri c8(["en"]):::literal v3 --"wdt:P1476"--> v4 v3 --"wdt:P31"--> v5 v3 --"wdt:P243"--> v6 v3 --"wdt:P236"--> v1 bind0[/"concat('http://www.worldcat.org/oclc/',?ocn)"/] v6 --o bind0 bind0 --as--o v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end