0.2.16-resolvers-revision
All checks were successful
deploy / deploy (push) Successful in 2m22s

This commit is contained in:
2023-11-28 10:53:48 +03:00
parent 3cf86d9e6e
commit 20f7c22441
15 changed files with 266 additions and 196 deletions

View File

@@ -1,62 +1,67 @@
from resolvers.editor import create_shout, delete_shout, update_shout
from resolvers.author import load_authors_by, update_profile, get_authors_all, rate_author
from resolvers.author import (
get_author,
get_authors_all,
get_author_followers,
get_author_followed,
load_authors_by,
update_profile,
rate_author,
)
from resolvers.reaction import (
create_reaction,
delete_reaction,
update_reaction,
reactions_unfollow,
reactions_follow,
delete_reaction,
load_reactions_by,
load_shouts_followed,
)
from resolvers.topic import (
topic_follow,
topic_unfollow,
topics_by_author,
topics_by_community,
topics_all,
get_topics_by_author,
get_topics_by_community,
get_topics_all,
get_topic,
)
from resolvers.follower import follow, unfollow
from resolvers.reader import load_shout, load_shouts_by, search, load_my_subscriptions
from resolvers.follower import follow, unfollow, get_my_followed
from resolvers.reader import get_shout, load_shouts_by, load_shouts_feed, load_shouts_search
from resolvers.community import get_community, get_communities_all
__all__ = [
# author
"load_authors_by",
"update_profile",
"get_author",
"get_authors_all",
"get_author_followers",
"get_author_followed",
"load_authors_by",
"rate_author",
"update_profile",
# community
"get_community",
"get_communities_all",
# topic
"get_topic",
"get_topics_all",
"get_topics_by_community",
"get_topics_by_author",
# reader
"load_shout",
"get_shout",
"load_shouts_by",
"rate_author",
"load_my_subscriptions",
"search",
"load_shouts_feed",
"load_shouts_search",
"load_shouts_followed",
# follower
"follow",
"unfollow",
"get_my_followed",
# editor
"create_shout",
"update_shout",
"delete_shout",
# topic
"topics_all",
"topics_by_community",
"topics_by_author",
"topic_follow",
"topic_unfollow",
"get_topic",
# reaction
"reactions_follow",
"reactions_unfollow",
"create_reaction",
"update_reaction",
"delete_reaction",
"load_reactions_by",
# community
"get_community",
"get_communities_all",
]