blakelee
07/06/2024, 6:20 PMsupabaseClient.from("my_table")
.select(Columns.raw("id, other_table(*)")
but if I want to add a parameter in the url like other_table.some_field=is.not.null
then I can’t do thatJan
07/06/2024, 6:27 PMBlake Oliveira
07/06/2024, 6:49 PMfilter=...
parameter. Instead it would be table.field=is.not.null
I managed to get it working in a curlJan
07/06/2024, 7:04 PMsupabaseClient.from("my_table")
.select(Columns.raw("id, other_table(*)") {
filter {
//normally the `isExact` method would work, but since we are negating we have to call this method:
filterNot("other_table.field", FilterOperator.IS, null)
}
}
Blake Oliveira
07/06/2024, 8:45 PM