db.select that for JsonAgg. jsonAgg({...}).orderBy(...).filter(...).as(..) In my sql queries to make it more like the rest of the ORM. (I need these orderBy and filters optionally, and I know I can just pass them in as arguments but i'm trying to keep the api similar to how the rest of drizzle would implement a feature like this. as and not extend SQL and add a build function. I was just wondering if there was a way to do this without having to do that?