You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support dicts in lists in metadata (#148)
* Support dicts in lists in metadata
This allows cases like:
```
metadata = {
"entities": [
{"entity": "Bell", "type": "PEOPLE"},
...
]
}
```
Note: For stores that perform shredding this works by JSON encoding the
entire item `{"entity": "Bell", "type": "PEOPLE"}` into the key. This
means that equality on the items of `entities` are supported, by digging
into fields won't be.
* lint/fmt
* lint
added animals dataset to helpers (#99)
* added animals dataset to helpers
* lint
* make it a function
* fix linting
---------
Co-authored-by: Ben Chambers <35960+bjchambers@users.noreply.github.com>