hello there.... why this query works ```ts await db.query.productTable.findMany({ where: (fields, o) => o.inArray( fields.id, featuredIds.map((ele) => +ele), ), with: publicViewProductsWith, orderBy: (fields, { desc }) => desc(fields.latestInventoryUpdateAt), limit: 30, }); ``` but when i prepare and pass ids as placeholder, it throw syntax error near $10 ```tx export const featuredProductsPreparedQuery = db.query.productTable .findMany({ where: (fields, o) => o.inArray(fields.id, sql.placeholder('ids')), with: publicViewProductsWith, orderBy: (fields, { desc }) => desc(fields.latestInventoryUpdateAt), limit: 30, }) .prepare('featured-products'); ```