GraphQL API: Filtering on data or datarange

Hi, @4erkas

modificationDate is date time. Please use ISO 8601. Find example below

{
  findFeatures(modificationDate: {
    greater: "2022-06-28T12:05:49.666Z", 
    lessOrEquals: "2022-06-30T12:05:49.666Z"
}) {
    modificationDate
  }
}

2 Likes