followed-by
All checks were successful
Deploy on push / deploy (push) Successful in 1m9s

This commit is contained in:
2024-07-03 15:35:12 +03:00
parent d55a3050fc
commit 1223c633d4
3 changed files with 18 additions and 1 deletions

View File

@@ -18,7 +18,8 @@ type Query {
get_author_follows(slug: String, user: String, author_id: Int): CommonResult!
get_author_follows_topics(slug: String, user: String, author_id: Int): [Topic]
get_author_follows_authors(slug: String, user: String, author_id: Int): [Author]
load_shouts_followed(limit: Int, offset: Int): [Shout] # userReactedShouts
load_shouts_followed(limit: Int, offset: Int): [Shout]
load_shouts_followed_by(slug: String, limit: Int, offset: Int): [Shout]
# reaction
load_reactions_by(by: ReactionBy!, limit: Int, offset: Int): [Reaction]