how do people generally handle the casing of respo...
# off-topic
f
how do people generally handle the casing of responses from Supabase to their frontend apps? Supabase of course returns data in camel_case, and it's generally preferred to use snakeCase on the frontend. Are you all creating your own converters? Is there a library you're using to handle this? One thing I like about NestJS (obviously that's an ORM and Supabase isn't), is that you can utilize a
@mapResult()
helper to fix this.
I just realized that I totally got this backwards. Supabase of course returns data snake_case, and frontend generally prefers keys in camelCase. Anyways, question still stands!