feat(profile): show real telegram avatars in messenger chips

This commit is contained in:
Ruslan Bakiev
2026-04-03 18:36:25 +07:00
parent f2fb64a0b7
commit f941ba7192
9 changed files with 267 additions and 51 deletions

View File

@@ -2,5 +2,6 @@ query Me {
me {
id
email
fullName
}
}

View File

@@ -3,6 +3,9 @@ query MyMessengerConnections {
id
type
channelId
displayName
username
avatarAvailable
isActive
}
}

View File

@@ -141,6 +141,9 @@ type MessengerConnection {
userId: ID!
type: MessengerType!
channelId: String!
displayName: String
username: String
avatarAvailable: Boolean!
isActive: Boolean!
}