Skip to content

conversion:num_invocation_logs

timrdf edited this page Oct 19, 2011 · 13 revisions

see Logging

<http://logd.tw.rpi.edu/source/data-rpi-edu/dataset/research-centers/version/2011-Oct-18> <http://purl.org/twc/vocab/conversion/num_invocation_logs> 93 .

Queries

Number of times the converter has been invoked for each dataset (results):

PREFIX conversion: <http://purl.org/twc/vocab/conversion/>
SELECT DISTINCT(?versioned)
WHERE {
  GRAPH <http://logd.tw.rpi.edu/vocab/Dataset> {
    ?versioned conversion:num_invocation_logs ?count .
  }
} ORDER BY DESC(?count)

495 datasets that do not have the count (conversion needs to be re-run) (results):

PREFIX dcterms:    <http://purl.org/dc/terms/>
PREFIX conversion: <http://purl.org/twc/vocab/conversion/>

SELECT ?versioned MAX(?modified) as ?last_modified
WHERE {
  GRAPH <http://logd.tw.rpi.edu/vocab/Dataset> {
               ?versioned a conversion:VersionedDataset .
    OPTIONAL { ?versioned dcterms:modified            ?modified }
    OPTIONAL { ?versioned conversion:num_invocation_logs ?count }
  }
  FILTER(!bound(?count))
} ORDER BY ?last_modified ?versioned
Clone this wiki locally