![](https://cdn.discordapp.com/avatars/846390316763447316/90fdb0923d532af83d802e07878f20ae.webp)
Hi! I have the following code (dart/flutter):
final response = await _teams.get(teamId: teamId);
final teamMembers = await _teams.listMemberships(teamId: teamId);
print(
teamMembers.memberships
.map((e) => '${e.userId} ${e.roles}, ${e.userName}, ${e.userEmail}')
.toList(),
);
The problem is, that I get this output:
[64ce2bb01c703cca4dd7 [owner], , , 66b39729ab248549d5d0 [owner], , ]
So as you can see, the userName and userEmail are not being returned. It's from client side, the user is logged in (and is in the team I am referring to) and in appwrite console, each team member to the team I am referring to has a name and obviously also has an email.
Recommended threads
- [401] Access to this resource is blocked...
Recently I found that my console is blocked. Perhaps somebody did try to upload more documents than allowed... I'll add limitation but anybody can help to unblo...
- Can We Get Relation?
I have a collection relation, can we get the collection via query for a single request and pick or select only a few column, for now i am using double fetch try...
- Can't make Function in Go work
I've tried everything, using workspaces, modules, symbolic links, binaries, using the root of repo and "cd" to the function but it always fails becaise git is n...
![](/images/bgs/pre-footer.png)