Goal: write a select query that returns all rows where state equals "florida".
Entity column:
@Column({ type: 'json'})
public address: Address;
Sample column value:
{"city": "miami", "state": "florida"}
Example query (doesn't work):
getManager().getRepository(User)
.createQueryBuilder('user')
.select()
.where('user.address.state =:state', {state: "florida"})
Is this functionality currently supported in typeorm? If so, how would I need to modify my where clause to return the correct rows?