fix-init-import

This commit is contained in:
tonyrewin 2022-11-10 11:00:51 +03:00
parent 1720f00839
commit d107562871
2 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,7 @@ from resolvers.profile import (
get_user_reacted_shouts, get_user_reacted_shouts,
get_user_roles, get_user_roles,
get_top_authors, get_top_authors,
get_author
) )
# from resolvers.feed import shouts_for_feed, my_candidates # from resolvers.feed import shouts_for_feed, my_candidates
@ -40,6 +41,7 @@ from resolvers.topics import (
topics_by_author, topics_by_author,
topics_by_community, topics_by_community,
topics_all, topics_all,
get_topic
) )
from resolvers.zine import ( from resolvers.zine import (
@ -73,6 +75,7 @@ __all__ = [
"get_users_by_slugs", "get_users_by_slugs",
"get_user_roles", "get_user_roles",
"get_top_authors", "get_top_authors",
"get_author",
# zine # zine
"recent_published", "recent_published",
"recent_commented", "recent_commented",
@ -101,6 +104,7 @@ __all__ = [
"topics_by_author", "topics_by_author",
"topic_follow", "topic_follow",
"topic_unfollow", "topic_unfollow",
"get_topic",
# communities # communities
"get_community", "get_community",
"get_communities", "get_communities",

View File

@ -198,6 +198,7 @@ type Mutation {
type Query { type Query {
# inbox # inbox
myChats: Result! myChats: Result!
searchRecipient(q: String!): Result!
loadChat(chatId: String!, offset: Int, amount: Int): Result! loadChat(chatId: String!, offset: Int, amount: Int): Result!
# auth # auth