Forum Discussion

Priyanka's avatar
Priyanka
Data Storage
09-30-2022

Advanced filter to pull all dates after today

Hi,

{
  "next": {
    "count": 360,
    "offset": 1
  }
}

 While using this gives me only next 360 days, how can i not limit it certain days and keep it open-ended to filter it to all dates after today?

1 Reply

Replies have been turned off for this discussion
  • harikm007's avatar
    harikm007
    Data Warehouse

    Hi Priyanka ,

    One option is to set a maximum number as count, something like

    {
      "next": {
        "count": 999999,
        "offset": 1
      },
      "custom": true
    }

     

    -Hari