You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use order to compute final inferences (see not existing predicates with suffix __previous())
PREFIX : <http://onto.fel.cvut.cz/ontologies/safety-performance-kpis/>
CONSTRUCT {
?timePoint__previous :has-next-trail-point ?timePoint .
} WHERE {
SELECT ?trail ?trailId ?timePoint ?date {
?trail a :trail .
?trail :id ?trailId .
?trail :has-point ?timePoint .
?timePoint :date ?date .
} ORDER BY ?trailId ?date
FILTER(?trial__previous = ?trial) # note that ?trial__previous does not exist but could be provided from the SELECT query above
}
A/C:
implement extension of apply-construct-with-chunked-values
implement extension of apply-construct-with-chunked-values-and-scrollable-cursor
implement extension of tabular module
The text was updated successfully, but these errors were encountered:
SPARQL is inefficient to process tabular data respecting an order of that data.
Use cases
Use case 1: inference of
has-next-trail-point
:SELECT
query)__previous()
)A/C:
The text was updated successfully, but these errors were encountered: