When is data == null in a query response?
# help
a
When is data == null in a query response?
In which exact cases is
data === null
in this query?
Copy code
const { data, error } = await supabase
     .from<definitions["customer"]>("customer")
        .select()
        .order("name");
o
Hi Did you try to check if there is anything related to the ``error`` variable ?