You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fragment EditCommunityQueryData on Community {
id
name
summary
icon{
id, url }
updatedAt
}
query communityPreview($communityId: String!) {
community(communityId:$communityId){
id
...CommunityPreview
}
}
fragment CommunityPreview on Community {
...CommunityInfo
id
summary
myFlag { id }
collectionCount
followerCount
threads { totalCount }
# myLike { id }
# likerCount
}
query communityData($communityId:String!){
community(communityId:$communityId){
id
...CommunityPageData
}
}
fragment CommunityPageData on Community{
id
myFollow{id}
...HeroCommunityData
}
Linked with Asses ZenPub replacement with BonFire #121
Community We have no way to get Community in these requests and mutations
The text was updated successfully, but these errors were encountered: