when I do a query in supabase: let { data: acco...
# off-topic
m
when I do a query in supabase: let { data: accounts, error } = await supabase .from('accounts') .select('*') .eq('api_key',api_key) when i eq by api_key returns null if not found, and when I do it with email returns empty array if not found, why ??? it should return the same either it is null or an empty array