query-843265e877fae5213623a22f62918961

rq turtle/ttl

nioshtic-with-doi-3data refresh rate: 3600 preferred output format: Table query title: Identifier map: DOI with or without NIOSHTIC2-ID Part 3

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?identifier ?NIOSHTIC2_ID WHERE {
  SERVICE bd:slice {
    ?item wdt:P356 ?identifier .
    bd:serviceParam bd:slice.offset 20000001 .
    bd:serviceParam bd:slice.limit 10000000 .
  }
  OPTIONAL { ?item wdt:P2880 ?NIOSHTIC2_ID. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?NIOSHTIC2_ID"):::projected v2("?identifier"):::projected v1("?item"):::projected c3(["bd:serviceParam"]):::iri c5(["20000001^^xsd:integer"]):::literal c7(["10000000^^xsd:integer"]):::literal subgraph s1["http://www.bigdata.com/rdf#slice"] style s1 stroke-width:4px; v1 --"wdt:P356"--> v2 c3 --"bd:slice.offset"--> c5 c3 --"bd:slice.limit"--> c7 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P2880".-> v3 end