reteplayground
Select

An NIH-funded shelf

SELECT ?work ?doi ?title ?venue ?year ?publisher WHERE {
  ?work cx:fundedBy <https://doi.org/10.13039/100000002> …
  OPTIONAL { ?work cx:containerTitle ?venue . }
  OPTIONAL { ?work cx:issuedYear ?year . }
  OPTIONAL { ?work cx:publisherName ?publisher . }
} LIMIT 50
Run this query → no server · no download · no account
caviri.github.io/rete
Run this query in the playground → no server, no download — the query runs in your browser.

The query

PREFIX cx: <https://w3id.org/rete/crossref#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?work ?doi ?title ?venue ?year ?publisher WHERE { ?work cx:fundedBy <https://doi.org/10.13039/100000002> ; cx:doi ?doi ; rdfs:label ?title . OPTIONAL { ?work cx:containerTitle ?venue . } OPTIONAL { ?work cx:issuedYear ?year . } OPTIONAL { ?work cx:publisherName ?publisher . } } LIMIT 50

rete playground · documentation · github.com/caviri/rete