Logo

A light, multi-model, user-defined place for your data.


Record-Store
Home
Motivations
Query capabilities
Examples
Q&A

Others
Writing a Record-Store client
Ressources

Query capabilities

Given this schema:

message User {
  int64 id = 1;
  string name = 2;
  string email = 3;
  repeated string beers = 4;
  string rick_and_morty_quotes = 5;
  map<string, string> favorite_locations_from_tv = 6;
  Address address = 7;
}

message Address {
  string full_address = 1;
  string city = 2;
}

Here’s a list of the queries you can do(given the right indexes):

Give me the users where:

The query has a tree-representation, meaning than you can combine many filters.