This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Description
const response = await supabase
.from('users')
.filter('id', 'lt', 3)
.filter('username', 'in', ["awalias","supabot"])
.select('*')
and
const response = await supabase
.from('users')
.in('id', ['2', '3'])
.select('*')
both return similar
text: '{"details":"unexpected \\"2\\" expecting \\"(\\"","message":"\\"failed to parse filter (in.2,3)\\" (line 1, column 4)"}',
method: 'GET',
path: '/rest/v1/users?apikey=examplekey&id=in.2,3&select=%2A'