FND

Results 2 comments of FND

I had this issue, resolved it with querying location like this: ``` extras: { x: sql`ST_X(${table.location})`.as("x"), y: sql`ST_Y(${table.location})`.as("y"), }, ``` It's not perfect, but it lets me use findMany and...

I had this issue, resolved it with querying location like this: ``` extras: { x: sql`ST_X(${table.location})`.as("x"), y: sql`ST_Y(${table.location})`.as("y"), }, ``` It's not perfect, but it lets me use findMany and...