Bobbie Soedirgo

Results 180 comments of Bobbie Soedirgo

Sorry for the wait! > Which would make the global fd/ignore file less prioritized, and I guess that what I actually want is not to `ignore` things, but to `unignore`...

Hmm, that makes sense. I think the solution is to use `.fdignore`, which will get applied in the directory it's in as well as its children. It's not a clean...

For now it's in the gotrue-js docs: https://supabase.github.io/gotrue-js/classes/GoTrueApi.html#listUsers

Seems like this is possible by using a view: ```plpgsql create view public.users as select * from auth.users; revoke all on public.users from anon, authenticated; ``` Then you can `.select()`...

Can you see if your issue is related to this? https://github.com/supabase/supabase/issues/2395 Did this issue pop up recently or has it been occurring from the start? Additionally, it would be helpful...

@koakh moving this to the auth component of supabase-js 🙏

Sounds reasonable to me. Simplest solution would be to extend the current `textSearch()` to accept an array of columns for the `column` argument: ```ts const { data, error } =...

Hmm, it departs too much from how the current filters look like imo (personal taste of course). Though I can see the confusion of `or`/`and` with the array approach.

Hey folks! I maintain `@supabase/postgrest-js`. Curious why the bundler is picking up `dist/module/index.js` instead of `dist/main/index.js` - the [Nuxt docs](https://v3.nuxtjs.org/guide/going-further/esm/#what-are-valid-imports-in-a-nodejs-context) mentions that Node.js will pick up `"module"` in `package.json`, but...

> If there is an exports field, it will be picked... Interesting - I'll test it out on the repro link above.