This commit is contained in:
@@ -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]
|
||||
|
@@ -183,6 +183,6 @@ type Invite {
|
||||
type AuthorFollows {
|
||||
topics: [Topic]
|
||||
authors: [Author]
|
||||
shouts: [Shout]
|
||||
# shouts: [Shout]
|
||||
communities: [Community]
|
||||
}
|
||||
|
Reference in New Issue
Block a user