rayyanmaq1
08/05/2021, 7:45 AMrayyanmaq1
08/05/2021, 7:47 AMsilentworks
08/05/2021, 7:58 AMsilentworks
08/05/2021, 7:59 AMunrealg
08/05/2021, 7:59 AMrayyanmaq1
08/05/2021, 9:54 AMrayyanmaq1
08/05/2021, 9:55 AMsilentworks
08/05/2021, 9:55 AMrayyanmaq1
08/05/2021, 9:55 AMrayyanmaq1
08/05/2021, 9:56 AMrayyanmaq1
08/05/2021, 9:56 AMsilentworks
08/05/2021, 9:57 AM.rpc
method on the SDKsilentworks
08/05/2021, 9:58 AMrayyanmaq1
08/05/2021, 9:58 AMKosh
08/05/2021, 3:27 PMfinal response = await _supabase.client
.from('posts')
.select(
"*, user:user_id(id, username, profile_picture)"
)
.eq('user_id', uid)
.execute();
Kosh
08/05/2021, 3:29 PMfinal response = await _supabase.client
.from(FRIENDS_DB)
.select(
"*, following_user:follower(id, username, profile_picture), "
"follower_user:following(id, username, profile_picture)",
)
.eq('following', uid)
.execute();
to get followings
final response = await _supabase.client
.from(FRIENDS_DB)
.select(
"*, follower_user:follower(id, username, profile_picture), "
"following_user:following(id, username, profile_picture)",
)
.eq('follower', uid)
.execute();
rayyanmaq1
08/06/2021, 7:03 AMsilentworks
08/06/2021, 7:03 AMsilentworks
08/06/2021, 7:24 AMsilentworks
08/06/2021, 7:26 AMrayyanmaq1
08/06/2021, 8:51 AMsilentworks
08/06/2021, 8:58 AMrayyanmaq1
08/06/2021, 9:13 AM