Skip to content

Commit

Permalink
Make localizationset in GraphQL optional
Browse files Browse the repository at this point in the history
  • Loading branch information
PUXMKU committed Oct 31, 2020
1 parent ea80fdf commit d013502
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public LocalizationInputObjectType(IStringLocalizer<LocalizationInputObjectType>
Description = S["the localization part of the content item"];

AddScalarFilterFields<StringGraphType>("culture", S["the culture of the content item to filter"]);
Field(x => x.LocalizationSet).Description(S["the localization set of the content item to filter"]);
Field(x => x.LocalizationSet, true).Description(S["the localization set of the content item to filter"]);
}
}
}

0 comments on commit d013502

Please sign in to comment.