Skip to content

conversion:num_invocation_logs

timrdf edited this page Mar 8, 2011 · 13 revisions

see Logging

Queries

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

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

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

PREFIX conversion: <http://purl.org/twc/vocab/conversion/>
SELECT ?versioned
WHERE {
  GRAPH <http://logd.tw.rpi.edu/vocab/Dataset> {
               ?versioned a conversion:VersionedDataset .
    OPTIONAL { ?versioned conversion:num_invocation_logs ?count }
  }
  filter(!bound(?count))
}
Clone this wiki locally