author-follows-result-type
All checks were successful
Deploy on push / deploy (push) Successful in 23s
All checks were successful
Deploy on push / deploy (push) Successful in 23s
This commit is contained in:
parent
2ee87c975a
commit
e7149e905a
|
@ -14,7 +14,7 @@ type Query {
|
||||||
get_shout_followers(slug: String, shout_id: Int): [Author]
|
get_shout_followers(slug: String, shout_id: Int): [Author]
|
||||||
get_topic_followers(slug: String, topic_id: Int): [Author]
|
get_topic_followers(slug: String, topic_id: Int): [Author]
|
||||||
get_author_followers(slug: String, user: String, author_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!
|
get_author_follows(slug: String, user: String, author_id: Int): AuthorFollowsResult!
|
||||||
get_author_follows_topics(slug: String, user: String, author_id: Int): [Topic]
|
get_author_follows_topics(slug: String, user: String, author_id: Int): [Topic]
|
||||||
get_author_follows_authors(slug: String, user: String, author_id: Int): [Author]
|
get_author_follows_authors(slug: String, user: String, author_id: Int): [Author]
|
||||||
load_shouts_followed(follower_id: Int!, limit: Int, offset: Int): [Shout] # userReactedShouts
|
load_shouts_followed(follower_id: Int!, limit: Int, offset: Int): [Shout] # userReactedShouts
|
||||||
|
|
|
@ -173,11 +173,12 @@ type Invite {
|
||||||
status: InviteStatus
|
status: InviteStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
type AuthorFollows {
|
type AuthorFollowsResult {
|
||||||
topics: [Topic]
|
topics: [Topic]
|
||||||
authors: [Author]
|
authors: [Author]
|
||||||
# shouts: [Shout]
|
# shouts: [Shout]
|
||||||
communities: [Community]
|
communities: [Community]
|
||||||
|
error: String
|
||||||
}
|
}
|
||||||
|
|
||||||
type Notification {
|
type Notification {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user