Function now()
returns the datetime value of current system time.
Arguments:
- N/A
Returns:
- System time <datetime>
Common Usage
Example: return current system time
return now()
Example: find 10 @card
nodes that expired before current time
find().nodes({@card.expire_date < now()}) as n
limit 10
return n{*}