We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug FilterTypes produce schema errors when filters properties are nullable.
To Reproduce
public class FooNullable { public short? BarShort { get; set; } } [Fact] public void Model_With_Nullable_Properties() { // arrange // act var schema = CreateSchema( new FilterInputType<FooNullable>( d => d.Filter(f => f.BarShort))); // assert schema.ToString().MatchSnapshot(); }
Expected behavior The schema correctly is created without any schema error.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
This one is now fixed with #1170
Sorry, something went wrong.
michaelstaib
No branches or pull requests
Describe the bug
FilterTypes produce schema errors when filters properties are nullable.
To Reproduce
Expected behavior
The schema correctly is created without any schema error.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: