Add custom field widget definition to all work item types
What does this MR do and why?
This adds the custom field widget definition to all work item types.
This is currently in development and will only be returned to the frontend when the custom_fields_feature feature flag is enabled.
References
Please include cross links to any resources that are relevant to this MR. This will give reviewers and future readers helpful context to give an efficient review of the changes introduced.
MR acceptance checklist
Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.
How to set up and validate locally
-
Enable the
custom_fields_featurefeature flag -
In the GraphQL explorer, try a query like:
query { namespace(fullPath: "flightjs/flight") { workItem(iid: "81") { id title widgets { type } } } }
It should include the custom fields widget in the list
Edited by Heinrich Lee Yu