getting null value while selecting data from the table

hii, i crated my own table auth table (Users) in public schema but i created this table using SQL editor, when i try to select data from the table im getting null response.

 const { data } = await supabase
      .from("Users")
      .select("username,hashpass")
      .match({ username: req.body.username });
here data is null.

and when i create the table with from supabase ui it works fine!

found something similar issue on github but didn't understand it properly.
https://github.com/supabase/supabase/discussions/5432
GitHub
Hello, I just started using Supabase and have been following a few of the templates. However, I can't seem to get anything back from my tables. It looks like the connections are fine but th...
Was this page helpful?