handle-shouts-paginating
Some checks failed
Deploy to core / deploy (push) Failing after 1m33s

This commit is contained in:
2024-02-21 11:59:47 +03:00
parent ee577c75fd
commit 4cde1c14b4
5 changed files with 30 additions and 39 deletions

View File

@@ -17,13 +17,13 @@ type Query {
get_topic_followers(slug: String, topic_id: Int): [Author]
get_author_followers(slug: String, user: String, author_id: Int): [Author]
get_author_follows(slug: String, user: String, author_id: Int): AuthorFollows!
load_shouts_followed(follower_id: Int!, limit: Int, offset: Int): [Shout] # userReactedShouts
# reaction
load_reactions_by(by: ReactionBy!, limit: Int, offset: Int): [Reaction]
# reader
get_shout(slug: String, shout_id: Int): Shout
load_shouts_followed(follower_id: Int!, limit: Int, offset: Int): [Shout] # userReactedShouts
load_shouts_by(options: LoadShoutsOptions): [Shout]
load_shouts_search(text: String!, limit: Int, offset: Int): [SearchResult]
load_shouts_feed(options: LoadShoutsOptions): [Shout]

View File

@@ -183,6 +183,6 @@ type Invite {
type AuthorFollows {
topics: [Topic]
authors: [Author]
shouts: [Shout]
# shouts: [Shout]
communities: [Community]
}