await supabase.from('users')
.select('id, username, display_name, collection_share!inner(collection_id, shared_with)')
.eq('id', 'collection_share.shared_with')
.eq('collection_share.collection_id', collection_id)
await supabase.from('users')
.select('id, username, display_name, collection_share!inner(collection_id, shared_with)')
.eq('id', 'collection_share.shared_with')
.eq('collection_share.collection_id', collection_id)