Add sort section in find records action (#15340)

https://github.com/user-attachments/assets/020f3e97-316b-41db-b95d-7b938a7f82cf
This commit is contained in:
Thomas Trompette
2025-10-28 09:54:47 +01:00
committed by GitHub
parent 01d8b99c38
commit be08233fa4
8 changed files with 241 additions and 15 deletions
@@ -13,5 +13,13 @@ export const workflowFindRecordsActionSettingsSchema =
gqlOperationFilter: z.any().optional().nullable(),
})
.optional(),
orderBy: z
.object({
recordSorts: z.array(z.any()).optional(),
gqlOperationOrderBy: z
.array(z.record(z.string(), z.any()))
.optional(),
})
.optional(),
}),
});