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
We have no way to get Like in these requests and mutations
fragment LikePreview on Like{
id
createdAt
context{
...on Community {
...CommunityPreview
}
...on Collection {
...CollectionPreview
}
...on Resource {
...ResourcePreview
}
...on User {
...UserPreview
}
...on Comment {
...CommentPreview
}
}
}
fragment ActivityPreview on Activity {
id
verb
createdAt
user {
icon {
id
url
}
image {
id
url
}
userId: id
userName: name
canonicalUrl
}
context {
... on Community {
...CommunityPreview
}
... on Collection {
...CollectionPreview
}
... on Resource {
...ResourcePreview
}
... on User {
...UserPreview
}
... on Comment {
...CommentPreview
}
... on Flag {
...FlagPreview
}
... on Like {
...LikePreview
}
... on Follow {
...FollowPreview
}
}
}
query user($userId: String!) {
user(userId: $userId) {
outbox(limit:15) {
edges {
user {
icon {
id
}
name
image {
id
}
}
verb
context {
... on Community {
...CommunityPreview
}
... on Collection {
...CollectionPreview
}
... on Resource {
...ResourcePreview
}
... on User {
...UserPreview
}
... on Comment {
...CommentPreview
}
... on Flag {
...FlagPreview
}
... on Like {
...LikePreview
}
... on Follow {
...FollowPreview
}
}
}
totalCount
pageInfo {
hasNextPage
hasPreviousPage
}
}
}
}
mutation deleteFlagContext($contextId:String!){
delete(contextId:$contextId){
...on Collection { id }
...on Comment { id }
...on Community { id }
# ...on Feature { id }
...on Flag { id }
...on Follow { id }
...on Like { id }
...on Resource { id }
# ...on Thread { id }
}
}
mutation unlike($contextId: String!) {
delete(contextId: $contextId){
... on Like {
context{
...on Collection{
id
myLike{ id }
likerCount
}
...on Comment{
id
myLike{ id }
likerCount
}
...on Community{
id
myLike{ id }
likerCount
}
...on Resource{
id
myLike{ id }
likers{ totalCount }
}
...on User{
userId: id
myLike{ id }
likerCount
}
}
}
}
}
The text was updated successfully, but these errors were encountered:
Linked with Asses ZenPub replacement with BonFire #121
Like
We have no way to get Like in these requests and mutations
The text was updated successfully, but these errors were encountered: