Benjamin

Results 28 comments of Benjamin

I changed my approach as I was not able to solve this the way I wanted. Don't spend too much time on this — especially if you're in the process...

I have the same problem with `^1.9.0`. @machour, should you flag it as bug instead?

Thumbs up for this feature, I'd love to use my `nanoid(prefix: string)` util in this exact scenario. ```ts export const user = pgTable('user', { id: text('id').default(() => nanoid("usr")).primaryKey(), ... })...

@jenseng can you merge this pull request ? 🙏

FYI, the root error is: ``` Error: Unexpected type ZodObject for key intervals ``` From what I read, I believe `.preprocess()` is not supported (yet)? https://github.com/kiliman/remix-params-helper/blob/76115b81a20f1779fec9bfe9f6ac37d4e02a8228/src/helper.ts#L206-L236 First param of `.preprocess()`...

Thank you, I'm not quite sure how to handle this case, otherwise I would have tried to make a PR.

Would be very inresting – instead of currently using the combo `map` & `update`

Ok this was due to a wrong format for the date...

Sure, with the following code snippet: ```gleam import gleam/option.{Some} import pog pub fn main() { let db = pog.default_config() |> pog.host("localhost") |> pog.database("postgres") |> pog.user("postgres") |> pog.password(Some("postgres")) |> pog.pool_size(15) |>...

is there a plan to port this to `solid-query`?