How can I join 2 tables where 1 side is a JSON property in a JSON column?
I am trying this:
I am getting a type issue:
3 Replies
The logic works, its TS that is giving the error but it is returning the expexted records
Solved it! Had to do this:
Solution
Hey @Igal thanks for the help, what would be the main differences between using
sql'my_table.metadata->>'id'
and eb.ref("my_table.metadata", "->>").key("id")
??