mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
32 lines
482 B
Text
32 lines
482 B
Text
schema:
|
|
{
|
|
"index-name": "examplekeys",
|
|
"index-action": "create",
|
|
"primary-key-type": "string",
|
|
"fields": [
|
|
{
|
|
"field-name": "set",
|
|
"field-type": "id",
|
|
"field-options": { "cache-type": "none" }
|
|
}
|
|
]
|
|
}
|
|
ingest:
|
|
[
|
|
{
|
|
"action": "set",
|
|
"records": {
|
|
"a": {
|
|
"set": [ 2 ],
|
|
},
|
|
"b": {
|
|
"set": 3,
|
|
}
|
|
}
|
|
}
|
|
]
|
|
queries:
|
|
Row(set=2)
|
|
["a"]
|
|
Union(Row(set=3),Row(set=2))
|
|
["a","b"]
|