my-subs-fix
All checks were successful
deploy / deploy (push) Successful in 2m6s

This commit is contained in:
2023-11-24 04:13:55 +03:00
parent 7257f52aeb
commit 167eed436d
3 changed files with 33 additions and 5 deletions

View File

@@ -314,8 +314,11 @@ type Query {
loadShout(slug: String, shout_id: Int): Shout
loadShouts(options: LoadShoutsOptions): [Shout]
loadFeed(options: LoadShoutsOptions): [Shout]
loadMySubscriptions: Result
loadDrafts: [Shout]
search(text: String!, limit: Int, offset: Int): [Shout]
loadReactionsBy(by: ReactionBy!, limit: Int, offset: Int): [Reaction]
followedReactions(follower_id: Int!): [Shout]
@@ -334,6 +337,4 @@ type Query {
communitiesAll: [Community]
getCommunity: Community
search(text: String!, limit: Int, offset: Int): [Shout]
}