core/resolvers/__init__.py

63 lines
1.3 KiB
Python
Raw Normal View History

2023-10-05 18:46:18 +00:00
from resolvers.editor import create_shout, delete_shout, update_shout
2023-10-23 14:47:11 +00:00
2023-11-23 23:00:28 +00:00
from resolvers.author import load_authors_by, update_profile, get_authors_all, rate_author
2022-09-04 17:20:38 +00:00
2023-10-23 14:47:11 +00:00
from resolvers.reaction import (
2022-09-04 17:20:38 +00:00
create_reaction,
delete_reaction,
update_reaction,
reactions_unfollow,
reactions_follow,
2023-10-05 18:46:18 +00:00
load_reactions_by,
2022-11-21 08:13:57 +00:00
)
2023-10-23 14:47:11 +00:00
from resolvers.topic import (
topic_follow,
topic_unfollow,
topics_by_author,
topics_by_community,
topics_all,
get_topic,
)
2022-11-21 08:13:57 +00:00
2023-10-23 14:47:11 +00:00
from resolvers.follower import follow, unfollow
2023-11-23 23:00:28 +00:00
from resolvers.reader import load_shout, load_shouts_by, search
2023-10-23 14:47:11 +00:00
from resolvers.community import get_community, get_communities_all
2022-11-11 21:27:17 +00:00
2022-09-04 17:20:38 +00:00
__all__ = [
2023-10-23 14:47:11 +00:00
# author
2022-11-15 02:36:30 +00:00
"load_authors_by",
"update_profile",
"get_authors_all",
2023-10-25 17:02:01 +00:00
"rate_author",
2023-10-23 14:47:11 +00:00
# reader
2022-11-21 08:13:57 +00:00
"load_shout",
2022-11-15 02:36:30 +00:00
"load_shouts_by",
2023-10-23 14:47:11 +00:00
"rate_author",
# follower
2022-11-15 02:36:30 +00:00
"follow",
"unfollow",
2023-10-23 14:47:11 +00:00
# editor
2022-09-04 17:20:38 +00:00
"create_shout",
"update_shout",
"delete_shout",
2023-10-23 14:47:11 +00:00
# topic
2022-09-04 17:20:38 +00:00
"topics_all",
"topics_by_community",
"topics_by_author",
"topic_follow",
"topic_unfollow",
2022-11-10 08:00:51 +00:00
"get_topic",
2023-10-23 14:47:11 +00:00
# reaction
2022-09-04 17:20:38 +00:00
"reactions_follow",
"reactions_unfollow",
"create_reaction",
"update_reaction",
"delete_reaction",
2022-11-15 02:36:30 +00:00
"load_reactions_by",
2023-10-23 14:47:11 +00:00
# community
"get_community",
"get_communities_all",
2023-11-23 23:00:28 +00:00
# search
"search",
2022-09-04 17:20:38 +00:00
]