community-fix
Some checks failed
deploy / deploy (push) Failing after 1m56s

This commit is contained in:
Untone 2023-11-23 00:05:04 +03:00
parent af5746c5d8
commit bdae67804e

View File

@ -319,16 +319,19 @@ type Query {
loadReactionsBy(by: ReactionBy!, limit: Int, offset: Int): [Reaction]
followedReactions(follower_id: Int!): [Shout]
authorsAll: [Author]
authorFollowers(slug: String!): [Author]
authorFollowedAuthors(slug: String!): [Author]
authorFollowedTopics(slug: String!): [Topic]
loadAuthorsBy(by: AuthorsBy, limit: Int, offset: Int): [Author]
authorsAll: [Author]
getAuthor(slug: String!): Author
getTopic(slug: String!): Topic
topicsAll: [Topic]
getTopic(slug: String!): Topic
topicsRandom(amount: Int): [Topic]
topicsByCommunity(community: String!): [Topic]
topicsByAuthor(author_id: Int!): [Topic]
communitiesAll: [Community]
getCommunity: Community
}