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
Is your feature request related to a problem? Please describe.
When you use mysql-input handler and some tables have "default" values, It would be desirable for those columns not to be required on input over mutation table
if you declare a table like:
create table mytable ( id int auto_increment not null primary key , name varchar(50) not null,age datetime NOT NULL DEFAULT '0000-00-00 00:00:00', created date );
you expect when you mutation over that table for columns:
id, created and even "age" not to be "required"
Describe the solution you'd like
any column mark as "nullable", "with default value" or auto_increment type not need too be marked as required on mutation for that table.
Is your feature request related to a problem? Please describe.
When you use mysql-input handler and some tables have "default" values, It would be desirable for those columns not to be required on input over mutation table
if you declare a table like:
you expect when you mutation over that table for columns:
id, created and even "age" not to be "required"
Describe the solution you'd like
any column mark as "nullable", "with default value" or auto_increment type not need too be marked as required on mutation for that table.
Additional context
error:
The text was updated successfully, but these errors were encountered: