Skip to content
This repository was archived by the owner on Nov 21, 2020. It is now read-only.
This repository was archived by the owner on Nov 21, 2020. It is now read-only.

Flatten customFieldsData, trackedData fields in customer, company models #774

@batamar

Description

@batamar

Is your enhancement request related to a problem? Please describe.

Storing values in a format like following is creating too many mapping fields in elastic search

customFieldsData: {
   [field1Id]: "value1",
   [field2Id]: "value2",
   ...
}

Describe the solution you'd like
Store above info like following

customFieldsData: [
   { field: "field1", value: "value1" },
   { field: "field2", value: "value2" },
   ...
]

Additional context
Add any other context or screenshots about the enhancement request here.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions