Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Function: Yesterday

Yesterday returns the a date/time value representing the start of the previous day.

Syntax

Code Block
languagenone
Yesterday()

Example

A query to return all requirements and scripts created in the last day, that were not created by the current user.

Code Block
languagenone
EntityType IN [Requirement,Script] AND CreatedAt >= Yesterday() AND CreatedBY != Me()

See Also