This commit is contained in:
@@ -4,7 +4,7 @@ type Query {
|
||||
get_author_id(user: String!): Author
|
||||
get_authors_all: [Author]
|
||||
get_author_followers(slug: String, user: String, author_id: Int): [Author]
|
||||
get_author_followed(slug: String, user: String, author_id: Int): [Author]
|
||||
get_author_follows(slug: String, user: String, author_id: Int): AuthorFollows!
|
||||
load_authors_by(by: AuthorsBy!, limit: Int, offset: Int): [Author]
|
||||
|
||||
# community
|
||||
|
@@ -179,3 +179,10 @@ type Invite {
|
||||
shout_id: Int!
|
||||
status: InviteStatus
|
||||
}
|
||||
|
||||
type AuthorFollows {
|
||||
topics: [Topic]
|
||||
authors: [Author]
|
||||
shouts: [Shout]
|
||||
communities: [Community]
|
||||
}
|
||||
|
Reference in New Issue
Block a user