fix(index): Add type casting to raw order by (#10899)

**What**
Fix index engine query builder to include column type casting on order by

Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
This commit is contained in:
Adrien de Peretti
2025-01-15 23:51:16 +00:00
committed by GitHub
co-authored by Carlos R. L. Rodrigues
parent 11f98f374c
commit 8792d0c062
4 changed files with 148 additions and 9 deletions
@@ -23,6 +23,6 @@ export const schema = `
}
type Price @Listeners(values: ["price.created", "price.updated", "price.deleted"]) {
amount: Int
amount: Float
}
`