Using date intervals in the query editor

Was this article helpful?

Still need help? contact us

Comments

2 comments

  • Avatar
    Jens Peter Jørgensen

    I have tried it and when I write the sentence it is corrected to a specific date.
    In this way, you cannot have a fixed Query that, for example, always shows the items created within the last 14 days.
    Is there a method where you can always search "Now + 14 day"?

    0
  • Avatar
    Tobias Månsson (ICP)

    The way to do this using the Remoting API is by searching for a DateTime FieldType in a Criteria. 

    new Criteria
    {
        FieldTypeId = "<DateTimeFieldType>",
        Interval = true,
        Operator = Operator.GreaterThan,
        Value = "0-h" //Just now
    }

    The format on the Value is like this regex, ^\d-[h|d|w]

    0

Please sign in to leave a comment.