https://supabase.com/ logo
Join DiscordCommunities
Powered by
# off-topic
  • y

    YelloJello

    10/10/2021, 5:38 PM
    does the hosted version of supabase use AWS SES as their mailing service?
  • n

    Nine

    10/11/2021, 2:15 PM
    One question, if someone wants to contribute to the UI library, is there a design that is being followed or? @User ?
  • s

    sudo killall windows

    10/11/2021, 3:55 PM
    Why do you ping team every four seconds lol
  • n

    Nine

    10/11/2021, 3:56 PM
    I don't ping the team every 4 seconds, I only ping when I have a question related to the products, thats why we have roles on discord when we have questions to get infos from people who can help
  • s

    sudo killall windows

    10/11/2021, 3:57 PM
    It just they way you work it into your message seems weird. Idk carry on
  • n

    Nine

    10/11/2021, 3:58 PM
    Maybe I placed it at a weird place in the message idk, or is there a general role for people who help, might be good to have it
  • n

    Nine

    10/11/2021, 3:58 PM
    Self assignable role
  • s

    sudo killall windows

    10/11/2021, 3:59 PM
    Yeah that would make sense
  • n

    Nine

    10/11/2021, 5:51 PM
    once the community grows that is gonna be helpful πŸ˜„
  • c

    cdedreuille

    10/11/2021, 5:53 PM
    @copple Any chance to see a video with the latest update for this month? I hope these don’t go away. It’s such a nice touch.
  • h

    HarryET

    10/11/2021, 6:27 PM
    Hey! Are there any supabase + swiftui examples?
  • c

    copple

    10/11/2021, 6:52 PM
    πŸ™‚ thanks @User. I'm travelling this month so it was a bit harder to record. I'll definitely do it again next month when i'm back home.
  • c

    copple

    10/11/2021, 6:54 PM
    Hey @User - I think the general flow would be to submit a Design PR with some suggestions, or even just a written Feature Request. If @User gives the thumbs up then it's got the green light !
  • r

    rmontgomery429

    10/11/2021, 10:43 PM
    Is it possible to give users an api key they can access their account with (and still apply RLS) instead of needing to go through an auth flow first?
    s
    • 2
    • 8
  • r

    rmontgomery429

    10/11/2021, 10:58 PM
    User authentication via API key and RLS
  • j

    jonny

    10/12/2021, 12:02 AM
    also, @User feel free to just DM me on this if you want beforehand.
  • b

    Biondi Bagasta Wiko Putra

    10/12/2021, 2:42 AM
    #ASK How i can filter with multiple condition??? For example i want to filter book based on the title or the author name. So code looks like this :
    Copy code
    ts
    filter('title', 'author', 'eq', `${data}`))
    This code was throwing an error :
    Copy code
    Expected 3 arguments but found 4`
    .
  • k

    khacvy

    10/12/2021, 2:50 AM
    I think
    .or(title.eq.your_title,author.eq.your_title')
  • b

    Biondi Bagasta Wiko Putra

    10/12/2021, 2:52 AM
    thank's it was correct
  • l

    LeoSonnekus

    10/12/2021, 2:53 AM
    Hey sorry if this is a dumb question but if I have auth configured with something else (Shopify) can I use Supabase purely as a DB to push and pull from on a user basis? I basically just want to use the Supabase client to let users add id's to.
  • l

    Luki

    10/12/2021, 3:29 AM
    Hello guys, I have a question. I have a table called "products" that looks like this
    Copy code
    javascript
    [
      {
        name: 'Example',
        id: 1,
        attributes: [
          {
            color: 'red',
            id: 1
          }
        ]
      },
      {
        name: 'Example 2',
        id: 2,
        attributes: [
          {
            color: 'green',
            id: 19
          },
          {
            color: 'gray',
            id: 23
          },
        ]
      }
    ]
    How can a get, for example, all the products where its attributes contain id == 1, something like this:
    Copy code
    javascript
    supabase
        .from('products')
        .select('*')
        .where('attribute_item')
        .contains('id', 1)
  • k

    khacvy

    10/12/2021, 4:07 AM
    what the data type of
    attributes
    ? I think if
    attributes
    is just an array of id and color, I suggest you use
    jsonb
    data type. Then you can use query to select specific
    attributes
    .
  • b

    Biondi Bagasta Wiko Putra

    10/12/2021, 4:08 AM
    #ASK I'm using contains to filter a book data based on the author name like this :
    Copy code
    ts
    .select(` id, title, author, publishedDate, image,category:categoryId (name), publisher:publisherId (name)`).contains('author', ['Bee']))
    But it was throwing an error :
    Copy code
    Object { hint: "No operator matches the given name and argument types. You might need to add explicit type casts.", message: "operator does not exist: character varying @> unknown", code: "42883", details: null }
  • b

    Biondi Bagasta Wiko Putra

    10/12/2021, 4:08 AM
    How to fix this????
  • b

    Biondi Bagasta Wiko Putra

    10/12/2021, 4:35 AM
    ah nevermind, i was solved this by textSearch
  • n

    Nine

    10/12/2021, 6:15 AM
    okay great, thanks for the info πŸ˜„
  • h

    Hal

    10/12/2021, 10:31 AM
    for anyone using sveltekit, is there any difference in using supabase js client directly on the client vs. using the local endpoints?
  • h

    Hal

    10/12/2021, 10:42 AM
    Apparently using local endpoints is better for ssr and for users with javascript disabled
  • j

    jon.m

    10/12/2021, 6:44 PM
    Is the JS client library secure from SQL injection?
  • s

    silentworks

    10/12/2021, 10:55 PM
    Yes since you can't pass actual SQL through it.
1...114115116...392Latest