query-7748c6604c10c2415c9040fe8b43f446

rq turtle/ttl

TODO

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 ?doi WHERE {
  ?item wdt:P31 wd:Q13433827;
        wdt:P356 ?doi.
  FILTER(CONTAINS(?doi, "GOLDBOOK"))
  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("?doi"):::projected v2("?item"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q13433827"]):::iri f0[["contains(?doi,'GOLDBOOK')"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"wdt:P356"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end