reactions-for-slugs
This commit is contained in:
parent
1f40e55f83
commit
fe13488584
|
@ -25,6 +25,7 @@ class Reaction(Base):
|
|||
return {
|
||||
"viewed": await ViewedStorage.get_reaction(self.id),
|
||||
"reacted": len(await ReactedStorage.get_reaction(self.id)),
|
||||
# TODO: "replied"
|
||||
"rating": await ReactedStorage.get_reaction_rating(self.id),
|
||||
"commented": len(await ReactedStorage.get_reaction_comments(self.id))
|
||||
}
|
||||
|
|
|
@ -116,6 +116,19 @@ async def get_shout_reactions(_, info, slug, page, size):
|
|||
r.createdBy = await UserStorage.get_user(r.createdBy or 'discours')
|
||||
return reactions
|
||||
|
||||
@query.field("reactionsForSlugs")
|
||||
async def get_shout_reactions(_, info, slugs, page, size):
|
||||
offset = page * size
|
||||
reactions = []
|
||||
with local_session() as session:
|
||||
for slug in slugs:
|
||||
reactions += session.query(Reaction).\
|
||||
filter(Reaction.shout == slug).\
|
||||
limit(size).offset(offset).all()
|
||||
for r in reactions:
|
||||
r.createdBy = await UserStorage.get_user(r.createdBy or 'discours')
|
||||
return reactions
|
||||
|
||||
|
||||
@query.field("reactionsAll")
|
||||
async def get_all_reactions(_, info, page=1, size=10):
|
||||
|
|
|
@ -242,6 +242,7 @@ type Query {
|
|||
reactionsAll(page: Int!, size: Int!): [Reaction]!
|
||||
reactionsByAuthor(slug: String!, page: Int!, size: Int!): [Reaction]!
|
||||
reactionsByShout(slug: String!, page: Int!, size: Int!): [Reaction]!
|
||||
reactionsForSlugs(slugs: [String]!, page: Int!, size: Int!): [Reaction]!
|
||||
|
||||
# collab
|
||||
inviteAuthor(slug: String!, author: String!): Result!
|
||||
|
|
Loading…
Reference in New Issue
Block a user