We have no way to get Me in these requests and mutations
fragment HeroCollectionMeData on Me {
user{
id
}
}
fragment HeroCommunityMeData on Me {
user{
id
}
}
fragment MyCollectionFollowsData on Me {
user{
id
collectionFollows{
totalCount,
pageInfo{ ...FullPageInfo }
edges{
id
context {
...on Collection { ...MyFollowedCollectionData }
}
}
}
}
}
fragment MyCommunityFollowsData on Me {
user{
id
communityFollows(limit:$limit, before:$before, after:$after) {
totalCount,
pageInfo{ ...FullPageInfo }
edges{
id
context{
...on Community { ...MyFollowedCommunityData }
}
}
}
}
}
fragment MyCommunityFollowsData on Me {
user{
id
communityFollows(limit:$limit, before:$before, after:$after) {
totalCount,
pageInfo{ ...FullPageInfo }
edges{
id
context
}
}
}
}
fragment UseMeData on Me {
isInstanceAdmin
email
isConfirmed
wantsEmailDigest
wantsNotifications
user{
id
...SettingsPageMeUser
...SidebarMeUser
}
}
Linked with Asses ZenPub replacement with BonFire #121
Me
We have no way to get Me in these requests and mutations