add shoutsRatedByUser
This commit is contained in:
@@ -488,3 +488,14 @@ async def shouts_commented_by_user(_, info, slug, page, size):
|
|||||||
limit(size).\
|
limit(size).\
|
||||||
offset( (page - 1) * size)
|
offset( (page - 1) * size)
|
||||||
return shouts
|
return shouts
|
||||||
|
|
||||||
|
@query.field("shoutsRatedByUser")
|
||||||
|
async def shouts_rated_by_user(_, info, slug, page, size):
|
||||||
|
with local_session() as session:
|
||||||
|
shouts = session.query(Shout).\
|
||||||
|
join(ShoutRating).\
|
||||||
|
where(ShoutRating.rater == slug).\
|
||||||
|
order_by(desc(ShoutRating.ts)).\
|
||||||
|
limit(size).\
|
||||||
|
offset( (page - 1) * size)
|
||||||
|
return shouts
|
||||||
|
|||||||
@@ -141,6 +141,7 @@ type Query {
|
|||||||
userSubscribedTopics(slug: String!): [Topic]!
|
userSubscribedTopics(slug: String!): [Topic]!
|
||||||
|
|
||||||
shoutsCommentedByUser(slug: String!, page: Int!, size: Int!): [Shout]!
|
shoutsCommentedByUser(slug: String!, page: Int!, size: Int!): [Shout]!
|
||||||
|
shoutsRatedByUser(slug: String!, page: Int!, size: Int!): [Shout]!
|
||||||
|
|
||||||
# shouts
|
# shouts
|
||||||
getShoutBySlug(slug: String!): Shout!
|
getShoutBySlug(slug: String!): Shout!
|
||||||
|
|||||||
Reference in New Issue
Block a user