Not getting data

I am not getting any data but not getting any errors either. I definitely have one record in this table. I am using MCP server which set up a connection to VS Code. I know it has access because it can see the tables and it has created the below methods but neither return any data. which is strange.

const { data, error } = await supabase .from('Account') .select('*') .eq('id', '1');


const { data, error } = await supabase .from('Account') .select('*') .limit(1) .single;
Was this page helpful?