infinispan / js-client

Javascript client for Infinispan, over the Hot Rod wire protocol
https://infinispan.org/docs/hotrod-clients/js/latest/js_client.html
Apache License 2.0
15 stars 28 forks source link

Implement Hotrod query operation without projection #85

Closed rigazilla closed 2 years ago

rigazilla commented 2 years ago

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

rigazilla commented 2 years ago

closed with #89