Add missing GQL fields (#6616)

This commit is contained in:
Daniel Espino García 2022-09-02 16:45:59 +02:00 committed by GitHub
parent 0d7cc9fa75
commit 18193f3c91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -188,6 +188,7 @@ query ${QueryNames.QUERY_ENTRY} {
}
teamMembers(userId:"me") {
deleteAt
schemeAdmin
roles {
id
name
@ -221,6 +222,8 @@ query ${QueryNames.QUERY_CHANNELS}($teamId: String!, $perPage: Int!, $exclude: B
msgCount
msgCountRoot
mentionCount
mentionCountRoot
schemeAdmin
lastViewedAt
notifyProps
roles {
@ -254,6 +257,7 @@ query ${QueryNames.QUERY_CHANNELS}($teamId: String!, $perPage: Int!, $exclude: B
sidebarCategories(userId:"me", teamId:$teamId, excludeTeam:$exclude) {
displayName
id
sortOrder
sorting
type
muted
@ -271,6 +275,8 @@ query ${QueryNames.QUERY_CHANNELS_NEXT}($teamId: String!, $perPage: Int!, $exclu
msgCount
msgCountRoot
mentionCount
mentionCountRoot
schemeAdmin
lastViewedAt
notifyProps
roles {
@ -311,6 +317,8 @@ query ${QueryNames.QUERY_ALL_CHANNELS}($perPage: Int!){
msgCount
msgCountRoot
mentionCount
mentionCountRoot
schemeAdmin
lastViewedAt
notifyProps
channel {
@ -346,6 +354,8 @@ query ${QueryNames.QUERY_ALL_CHANNELS_NEXT}($perPage: Int!, $cursor: String!) {
msgCount
msgCountRoot
mentionCount
mentionCountRoot
schemeAdmin
lastViewedAt
notifyProps
channel {

View file

@ -124,6 +124,7 @@ export const gqlToClientChannelMembership = (m: Partial<GQLChannelMembership>, u
last_update_at: m.lastUpdateAt || 0,
last_viewed_at: m.lastViewedAt || 0,
mention_count: m.mentionCount || 0,
mention_count_root: m.mentionCountRoot || 0,
msg_count: m.msgCount || 0,
msg_count_root: m.msgCountRoot || 0,
notify_props: m.notifyProps || {},