Strip null values from the response data. Properties with null values will be omitted from the returned JSON objects.
Requires PostgREST 11.2.0+.
https://docs.postgrest.org/en/stable/references/api/resource_representation.html#stripped-nulls
const { data, error } = await supabase
.from('characters')
.select()
.stripNulls()