You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an input type ist specified with update: true, it makes all fields optional (as stated in the documentation).
It even does it when I specifically say it should be non optional through the inputType in a Field Annotation.
#[Input(update: true)]
class UserInput
{
#[Field(inputType: 'String!')]
publicstring$important;
}
The output will be String and not String!.
Is this intended behavior?
I would expect that my specified input type is used.