Skip to content

Commit

Permalink
fix sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Jul 17, 2023
1 parent a071485 commit 0d363b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/graphql.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async def evaluations(self, info: Info,
{'$match': filter_eval},
{'$sort': { 'createdAt': -1 }}
# {'$group': {'_id':''}}
], { "allowDiskUse" : True })
], allowDiskUse=True)
eval_list = []
async for eval in evaluations:
# GraphqlEvaluation.from_pydantic(EvaluationModel(**eval))
Expand Down

0 comments on commit 0d363b0

Please sign in to comment.