value modications from front

This commit is contained in:
José Salazar
2025-12-18 09:50:23 -05:00
parent b9fa4d5a90
commit cb29f73685
5 changed files with 27 additions and 7 deletions

View File

@@ -4,10 +4,10 @@ query listEvents (
$limit: Int
) @auth(level: USER) {
events(
orderBy: {
date: $orderByDate
createdDate: $orderByCreatedDate
}
orderBy: [
{ date: $orderByDate }
{ createdDate: $orderByCreatedDate }
]
limit: $limit
) {
id