cancel
Showing results for 
Search instead for 
Did you mean: 

Advanced filter to pull all dates after today

Priyanka
7 - Data Storage
7 - Data Storage

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 1

harikm007
13 - Data Warehouse
13 - Data Warehouse

Hi @Priyanka ,

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

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

 

-Hari