We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in()
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'
The text was updated successfully, but these errors were encountered:
linked to supabase/supabase#22
Sorry, something went wrong.
f6da9ba
kiwicopple
No branches or pull requests
and
both return similar
The text was updated successfully, but these errors were encountered: