Reference in the Hotrod implementation is here
Query request and response proto definition are here
Query without projection: i.e. `from sample_bank_account.User u where u.name = "John"
How to unroll the QueryResponse object. Some c# code as reference is here
Let's leave the query with projection, i.e. select u.name, u.surname, u.age from sample_bank_account.User u where u.age is null to a different issue
Reference in the Hotrod implementation is here Query request and response proto definition are here
Query without projection: i.e. `from sample_bank_account.User u where u.name = "John" How to unroll the QueryResponse object. Some c# code as reference is here
Let's leave the query with projection, i.e.
select u.name, u.surname, u.age from sample_bank_account.User u where u.age is null
to a different issue