Loading
Update graphql_known_operations webpack plugin
What does this MR do and why?
- Changes behaviour of the
graphql_known_operationswebpack plugin. - Previously, it would output a list of all known GraphQL operations as an array of strings.
- This MR changes it to output an object with
feature_categoryandurgencykeys.
Before
- foo
- bar
- bazAfter
abortK8sPodLogsStream:
feature_category: audit_events
urgency: high- Operations without a feature_category will be set to
null. - Operations without an urgency will be set to
default.
Related to #571981 (closed)