Apr 7
Expand column data types
Currently we offer:
- Text
- Number
- Date
- Option
- Multi-option
We should expand the data types as needed.
Some initial ideas:
- Boolean
- Datetime
- Time
Planned
If you mean you have a some data type like this: type User { name: string address: { postalCode: string } } You can use the accessor function: defineMeta(row => row.address.postalCode, { /* meta here */ }) On the flip side, if you have a single column for "address", but want filters for individual properties of the address, that isn't possible right now with the current `stable` release... but should be possible in the `canary` release ;) You can join our Discord if you want to try it out: https://ui.bazza.dev/chat
Would be really cool to filter on a nested column data structure... e.g. addresses w/ zip code/state/country