https://supabase.com/ logo
Join Discord
Powered by
# off-topic
  • c

    cbert

    02/23/2022, 8:43 AM
    BTW: restart did the trick, thanks again!
  • m

    Miguel2390d

    02/23/2022, 5:51 PM
    Hey
  • m

    Miguel2390d

    02/23/2022, 5:51 PM
    Does anyone knows what type of AWS instance they use for hosted projects?
  • m

    Miguel2390d

    02/23/2022, 5:51 PM
    In the free plan
  • d

    debabrata

    02/23/2022, 7:50 PM
    Can someone help me understand what the
    .rangeLt()
    filter is supposed to do? 😅
  • d

    debabrata

    02/23/2022, 7:51 PM
    Supabase has this usage example:
    Copy code
    const { data, error } = await supabase
      .from('countries')
      .select('name, id, population_range_millions')
      .rangeLt('population_range_millions', [150, 250])
  • d

    debabrata

    02/23/2022, 7:53 PM
    Is it supposed to return rows where the given column's value is between [150, 250]? What's the difference between rangeLt(), rangeGt(), etc?
  • s

    Scott P

    02/23/2022, 8:19 PM
    range filters
  • l

    LORD WAREON

    02/24/2022, 3:18 AM
    Can I use supabase for react native application for prototyping
  • l

    LORD WAREON

    02/24/2022, 3:19 AM
    And is the db relational?
  • u

    user

    02/24/2022, 7:54 AM
    Hey guys
  • u

    user

    02/24/2022, 7:55 AM
    Anyone having issues with supabase postgres servers?
  • u

    user

    02/24/2022, 7:56 AM
    The read requests on our tables from our webapp does not respond, and doesn't even throw any errors as such
  • s

    sylar815

    02/24/2022, 8:05 AM
    Working fine for me
  • u

    user

    02/24/2022, 8:08 AM
    the CPU usage has gone down
  • u

    user

    02/24/2022, 8:08 AM
    Looking for some suggestions on troubleshooting 🙏
  • u

    user

    02/24/2022, 8:17 AM
    Getting Error: 522 Connection timed out
  • g

    gabydd

    02/24/2022, 12:56 PM
    Seems like something you might want to contact support about, or check if there is an GitHub issue or discussion about it.
  • m

    magenta

    02/24/2022, 1:34 PM
    is ``@supabase/supabase-auth-helpers`` the recommended way to use supabase with next.js? just curious, because it's a community maintained package instead of official, but the official next.js examples use that package now (https://github.com/supabase/supabase/blob/88e2fc4485d458569a46e3a871e0350ff9fcdac6/examples/nextjs-with-supabase-auth/package.json#L10)
  • m

    Maus

    02/24/2022, 2:31 PM
    https://discord.com/channels/839993398554656828/945625501802835998 there's some info about it in this thread
  • d

    DanMossa

    02/24/2022, 3:48 PM
    Did you end up getting anywhere with this?
  • u

    user

    02/24/2022, 3:50 PM
    No, I didn't get a response here and I can't find one online, so I'm guessing the RLS stuff I'd like to do is not possible
  • d

    DanMossa

    02/24/2022, 3:52 PM
    I had an idea that might be sketch but I use phone auth on firebase. Once they're verified on firebase I can make an account for the user and sign up on supabase like that. Example: Firebase Phone Auth -> create password for user based on some value that doesn't change. Maybe uid? -> sign up in supabase -> store jwt in firebase
  • d

    DanMossa

    02/24/2022, 3:52 PM
    Then I can use that jwt to call supabase ?
  • d

    DanMossa

    02/24/2022, 3:52 PM
    I haven't tried it but I feel like it would work?
  • u

    user

    02/24/2022, 4:17 PM
    Ah yeah that's a good idea actually! I guess ideally you could also ask users to recreate an account, but at least they can still login if they don't
  • d

    DanMossa

    02/24/2022, 4:19 PM
    Yeah, I rather not make them have to make another account but I feel like the JWT route should work?
  • d

    DanMossa

    02/24/2022, 4:20 PM
    Honestly good luck lol
  • b

    bathman

    02/24/2022, 9:05 PM
    Yo! Random question folks Could you expand foreign key relationships on a
    .on().subscribe()
    call? Let's say i'm listening to new inserts on a table called
    messages
    on the
    messages
    table, there's a foreign key to the
    users
    table, which includes their name and photo. If i'm subscribed to
    messages
    could I automatically have the subscription send me the name and photo for the user? So I don't have to do a second call after the message arrives
  • g

    garyaustin

    02/24/2022, 9:20 PM
    No. Realtime is currently limited to single table with one .eq clause per subscription. It returns only data from the subscribed table.
    b
    • 2
    • 1
1...193194195...392Latest