graphQL: Add ability to filter by a range (Date/Numeric fields)

It would be useful if graphQL queries could filter for a Date field in a specific range.

This would also be useful for Numeric fields.

This is a special case of the missing ability to specify compound conditions –
field>lowerBound AND field<upperBound

Hello, @Matt_Blais

It is possible. Find example below

{
  findReleases(releaseDate:{
	greater: "2023-10-01"
    less: "2023-10-31"
  })
  { 
    name
    releaseDate
  }
}

1 Like