bucket_wallclock

Generic Description

Is a live Cypher function in Nexyron. It is documented separately because time construction, sequence ordering, window parameters, and as-of behavior materially change analytical meaning.

Simple example:

RETURN bucket_wallclock('day', toZonedDatetime('2026-03-01T12:34:56+02:00'))

Consumer-Level Explanation

Use it when the function semantics match the query intent exactly. Prefer this function when the temporal assumption should be visible to the planner, especially for event streams, freshness checks, and sequence features.

More Detailed Explanation

bucket_wallclock should be understood by the value shape it expects and the row shape it returns. It composes with MATCH, WHERE, WITH, RETURN, and procedure output, so planner-facing documentation should describe both the immediate value transformation and why it belongs in the database query.

Advanced Example

This example names the event stream and operational context before applying bucket_wallclock, which helps planner tooling preserve the intended sequence semantics.

MATCH (coach:Coach)-[e:REVIEWED]->(u:User)
TIME e.ts BETWEEN datetime('2026-03-01T00:00:00Z') AND datetime('2026-03-08T00:00:00Z')
WITH coach,
     u,
     bucket_wallclock('day', e.ts) AS local_day,
     properties(u.profile) AS profile_map
RETURN coach.region AS region,
       local_day,
       count(*) AS reviews,
       avg(size(keys(profile_map))) AS avg_profile_fields
ORDER BY region, local_day

Real Use Cases

Real Limitations And Tradeoffs