Say I have a User entity with an embedded entity address which contains a house number property and a street property. How can I write a GQL projection query that will filter based on name and return a list of addresses ?
The projection query I am trying to write:
SELECT address FROM User WHERE name = Bob
This should return two addresses but it returns no results.
Thanks to anyone who answers !