A light, multi-model, user-defined place for your data.
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:
1
,1
and 10
,1
or 10
,null
jerry
MR MEESEEKS LOOK AT ME
Trappistes Rochefort 10
hitchhikers_guide
Earth
has a valueParis
The query has a tree-representation, meaning than you can combine many filters.