swiss
02/09/2022, 9:58 PMconst { data, error } = await supabase
.from("actions")
.select()
.not("status", "eq", "complete")
I have a column of status (type varchar) and the default value of the column is NULL (which is my only guess as to why this isn't working). When i remove the not filter, I get my data back so it's not that there's another general error like my keys not working or something. I also have had another filter working, which I'm trying to combine with this one, but removed for the sake of debugging.garyaustin
02/09/2022, 10:01 PMgaryaustin
02/09/2022, 10:01 PMswiss
02/09/2022, 10:02 PMswiss
02/09/2022, 10:02 PMgaryaustin
02/09/2022, 10:05 PM