difference between rangeGt(), rangeGte(), rangeLt(), rangeLte(), rangeAdjacent()

I want to filter data by dates just like the following doc.
Is the following doc accurate?
https://supabase.com/docs/reference/javascript/rangegt
const { data, error } = await supabase
  .from('reservations')
  .select()
  .rangeGt('during', '[2000-01-02 08:00, 2000-01-02 09:00)')


This gives me an error
error >>> {"code":"42883","details":null,"hint":"No operator matches the given name and argument types. You might need to add explicit type casts.","message":"operator does not exist: timestamp with time zone >> unknown"}
rangeGt()
Was this page helpful?