wario
12/02/2021, 9:38 PMEduardo Lopez
12/03/2021, 2:08 AMEduardo Lopez
12/03/2021, 2:09 AMuser
12/03/2021, 2:21 AMuser
12/03/2021, 2:21 AMfayaz
12/03/2021, 7:46 AMchipilov
12/03/2021, 7:56 AMwiesson
12/03/2021, 8:38 AMwiesson
12/03/2021, 8:39 AMekko
12/03/2021, 8:56 AMXyo
12/03/2021, 10:33 AMbatuhanbilginn
12/03/2021, 11:41 AMegnus
12/03/2021, 12:33 PMauth.users
and in that table there is no reference to this, you will be creating a relationship of many to 1, which means that when querying from users to get integrations you (might) get an array of 1 item. Instead of an object directly. But still, you are safe to know that the array will be always one item (perhaps you get an object with the query and not an array, this is only my assumption with what I know today)Mathel
12/03/2021, 1:10 PMcookie mob
12/03/2021, 1:59 PMcookie mob
12/03/2021, 2:38 PMitsnotyalc
12/03/2021, 3:07 PMconst { data: users, error } = await supabase
.from('users')
.select('*')
.in('id', userIds);
garyaustin
12/03/2021, 3:18 PMThomas B
12/03/2021, 6:28 PMuuid
, or am I under the wrong impression that it was actually fixed a couple of hours ago? π
- JS client verison: 1.28.5garyaustin
12/03/2021, 6:52 PMThomas B
12/03/2021, 7:05 PMThomas B
12/03/2021, 7:09 PMBarba
12/03/2021, 8:35 PMconst todos = supabase
.from('todos')
.on('*', payload => {
console.log('Change received!', payload)
})
.subscribe()
but its not working.. but a simple request is working fine:
const { data: todos, error } = await supabase.from('todos').select('*')
so why is not working the subscribe and second thing, where is the rigth place to place this peace of code on nextjs. Thanks!Thomas B
12/03/2021, 8:59 PMuser
12/03/2021, 10:05 PMuser
12/03/2021, 10:05 PMuser
12/03/2021, 10:13 PMsupabase init
in a verbose manner to see if anything is occurring or if it's hanging immediately?Tobbe
12/03/2021, 11:06 PMALTER INDEX "E1spCarCategoryCount.carInfoId_categoryId_unique" RENAME TO "E1spCarCategoryCount_carInfoId_categoryId_key";
That's an example of a rename that fails. Should this be supported? Does it look wrong in any way?Tobbe
12/03/2021, 11:08 PMTobbe
12/03/2021, 11:09 PM