Skip to content

Provide metadata for the dependent keys of computed propertiesΒ #26

@suchitadoshi1987

Description

@suchitadoshi1987

Currently, we get information about the list of computedProperties for a given file, it would be great to have some more info regarding the dependentKeys for that particular computed property.
Proposal:
We can have the computedProperties to be an array of objects:

{
  "computedProperties": [
    {
      "propertyName": "fullName",
      "dependentKeys": [
        "firstName",
        "lastName"
      ]
    }
  ]
}

OR

as a map

{
  "computedProperties": {
    "fullName": [
      "firstName",
      "lastName"
    ]
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions