System Information
- Strapi: 3.4.1:
- OS: MacOS Big Sur:
- DB: Postgres via Docker:
- Node: 14.13.1:
- Npm: 6.14.8:
- Yarn: 1.22.5:
I followed steps in Plugin’s front-end Field API docs for custom field for array type, and the UI for array type shows up. Next step is to save the Array type to DB, but I found no posts/guides about saving it to backend. I know Knexjs supports saving array type for Postgres https://stackoverflow.com/questions/50118196/how-to-insert-array-data-type-using-knex-and-potsgres/50118361
Now, I need to take the data from ui in text format or json format and transform to Array and save to db via Knex. And, of course, when showing the array data in ui, I need to transform Array to text or json so that it is easier to edit.