update schema

This commit is contained in:
2022-02-03 10:36:39 +03:00
parent dcdfdf7dc3
commit 6b255cc984
3 changed files with 21 additions and 26 deletions

View File

@@ -1,7 +1,8 @@
from resolvers.auth import login, sign_out, is_email_free, register, confirm
from resolvers.inbox import create_message, delete_message, update_message, get_messages
from resolvers.zine import create_shout, get_shout_by_slug, top_month, top_overall, \
recent_shouts, top_viewed #, top_authors
recent_shouts, top_viewed, shouts_by_author, shouts_by_topic, \
shouts_candidates, shouts_reviewed, shouts_subscribed
from resolvers.profile import get_users_by_slugs, get_current_user
from resolvers.topics import topic_subscribe, topic_unsubscribe, topics_by_author, \
topics_by_community, topics_by_slugs
@@ -24,6 +25,11 @@ __all__ = [
"get_users_by_slugs",
"get_shout_by_slug",
"recent_shouts",
"shouts_by_topic",
"shouts_by_author",
"shouts_subscribed",
"shouts_reviewed",
"shouts_candidates",
"top_month",
"top_overall",
"top_viewed",