cmeeren / FSharp.HotChocolate

Support for F# types and nullability in HotChocolate
MIT License
7 stars 1 forks source link

Support Option-wrapped inner lists, unions, and maybe other types #4

Closed cmeeren closed 2 months ago

cmeeren commented 2 months ago

Currently, lists of option-wrapped lists do not serialize correctly. A similar error is returned for lists of option-wrapped unions. This must be fixed, and it should be investigated if this applies in other cases, too.

cmeeren commented 2 months ago

Related: #6

cmeeren commented 2 months ago

Discovered this can be solved by formatters. Investigating further. This may also impact #5 and #6.

cmeeren commented 2 months ago

Erasing options using a formatter fixed this, but did unfortunately not fix #5 or #6.