Skip to content

Commit

Permalink
fix: non nullable ID in ConfigurationSectionType
Browse files Browse the repository at this point in the history
  • Loading branch information
ksavosteev committed Nov 18, 2024
1 parent 14f53e3 commit 86a939e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ConfigurationSectionType : ExtendableGraphType<ExpProductConfigurat
{
public ConfigurationSectionType()
{
Field(x => x.Id, nullable: true).Description("Configuration section id");
Field(x => x.Id, nullable: false).Description("Configuration section id");
Field(x => x.Name, nullable: true).Description("Configuration section name");
Field(x => x.Type, nullable: true).Description("Configuration section type");
Field(x => x.Description, nullable: true).Description("Configuration section description");
Expand Down

0 comments on commit 86a939e

Please sign in to comment.