Field: CreatedAt
Description
The Created At field is a reference field for entities (Requirements, Scripts, Script Assignments and Incidents) and is date/time stamp of when the entity was created.
Supported Formats
The date formats supported are:
- dd Month yyy e.g. "24 October 2011" and "24 Oct 2011"
- dd/mm/yy e.g "24/10/2011"
- yyyy/mm/dd e.g "2011/10/24"
- yyyy-mm-dd e.g "2011-10-24"
You can also include a time component:
- yyyy-mm-dd hh:mm e.g "2011-10-24 14:25"
- yyyy-mm-dd hh:mm am/pm e.g "2011-10-24 10:30 pm"
Examples
To find all items that were created between 2 dates, you can use the greater than or equal to and less than or equal to operators:
CreatedAt >= "2011-10-24" AND CreatedAt <= "2011-11-02"
Alternative you can use the short-hand range syntax:
CreatedAt IN ["2011-10-24", "2011-11-02"]
See Also
Supported Operators
=, <, >, <=, >=, IN, !=, NOT IN, IS, IS NOT
Supported Indexes
Supported Types
- AgileRun
- AutomatedTest
- AutomatedTestAssignment
- AutomatedTestRun
- Incident
- Requirement
- ScriptRun
- TestScript
- TestScriptAssignment
Supported Features
Feature | Supported? |
---|---|
Aggregation | Yes (DateTime) |
Sortable | Yes |
Sub-selects | No |