Moni
Moni
I like it! I've been looking for similar tools for a while now. Is it tightly coupled with rel btw? I'd like to use it independently if possible ^^ unrelated...
> You can use the migration functionality independently 😄 but should it be in a separate package / repo?
I meant should the migrations "component" / functionality (the migrator package) of rel be in a separate GitHub repo / project, this way you don't have to clone / depend...
upper.io or sqlx!
https://github.com/golang-migrate/migrate
any updates?
Dealing with the same issue :/
I managed to find a solution using axios' `paramsSerializer` config field ```ts import qs from "qs" ... { paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "comma", indices: false }), } ```
Ideally an API along the lines of ```ts const editProduct = useEditProductMutation({ // or useThrottledEditProductMutation throttle: { time: 1000 * 60, // 1 second amount: 50 // 50 requests per...
Is this still the case?