-
Notifications
You must be signed in to change notification settings - Fork 36
conversion:num_invocation_logs
timrdf edited this page Mar 8, 2011
·
13 revisions
see Logging
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)
495 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))
}