fixes
This commit is contained in:
parent
1def45b61c
commit
4b8f1798ff
|
@ -239,7 +239,7 @@ input ReactionBy {
|
||||||
type Query {
|
type Query {
|
||||||
# inbox
|
# inbox
|
||||||
loadChats(offset: Int, amount: Int): Result! # your chats
|
loadChats(offset: Int, amount: Int): Result! # your chats
|
||||||
loadMessagesBy(by: By & MessagesBy!, amount: Int, offset: Int): Result!
|
loadMessagesBy(by: MessagesBy!, amount: Int, offset: Int): Result!
|
||||||
searchUsers(query: String!, amount: Int, offset: Int): Result!
|
searchUsers(query: String!, amount: Int, offset: Int): Result!
|
||||||
|
|
||||||
# auth
|
# auth
|
||||||
|
@ -248,9 +248,9 @@ type Query {
|
||||||
signOut: AuthResult!
|
signOut: AuthResult!
|
||||||
|
|
||||||
# zine
|
# zine
|
||||||
loadAuthorsBy(by: By & AuthorsBy, amount: Int, offset: Int): [Author]!
|
loadAuthorsBy(by: AuthorsBy, amount: Int, offset: Int): [Author]!
|
||||||
loadShoutsBy(by: By & ShoutsBy, amount: Int, offset: Int): [Shout]!
|
loadShoutsBy(by: ShoutsBy, amount: Int, offset: Int): [Shout]!
|
||||||
loadReactionsBy(by: By & ReactionBy!, amount: Int, limit: Int): [Reaction]!
|
loadReactionsBy(by: ReactionBy!, amount: Int, limit: Int): [Reaction]!
|
||||||
userFollowers(slug: String!): [Author]!
|
userFollowers(slug: String!): [Author]!
|
||||||
userFollowedAuthors(slug: String!): [Author]!
|
userFollowedAuthors(slug: String!): [Author]!
|
||||||
userFollowedTopics(slug: String!): [Topic]!
|
userFollowedTopics(slug: String!): [Topic]!
|
||||||
|
|
Loading…
Reference in New Issue
Block a user