Do I understand correctly that `ENUM_VALUE` location (TypeSystemDirectiveLocation) works for [EnumValue](http://spec.graphql.org/October2021/#EnumValue) term and may be applied to both examples? ```graphql enum Color { GREEN @myDirective RED } ``` ```graphql input Data { color: Color = RED @myDirective } ```