Christer van der Meeren

Results 247 issues of Christer van der Meeren

# Add List.chooseV, Seq.tryPickV, etc. for ValueOption I propose we add `ValueOption` equivalents of the following functions: * `List.choose` / `Seq.choose` / `Array.choose` / `Event.choose` / `Observable.choose` * `List.pick` /...

approved-in-principle
area: library

![image](https://github.com/user-attachments/assets/ddd26dd4-be22-4728-945d-857ee1bd92e7)

For example here: https://github.com/cmeeren/Facil/blob/833ff9a195cc97f081698f6a58660ed937f8f1cf/src/DbTests.DbGen/DbGen.fs#L29685-L29689

### Product Hot Chocolate ### Is your feature request related to a problem? I often get error messages like this: ``` The specified directive `@myDirective` is unique and cannot be...

🌶️ hot chocolate

### Product Hot Chocolate ### Is your feature request related to a problem? The v15 migration docs state that F# support was dropped in favor of [FSharp.HotChocolate](https://github.com/cmeeren/FSharp.HotChocolate), but FSharp.HotChocolate has...

🌶️ hot chocolate

As I understand it, non-partial active patterns may not have extra parameters: ```f# let inline (|Lt|Gt|Eq|) compareWith x = if x < compareWith then Lt elif x > compareWith then...

Feature Request
Area-Diagnostics

The GraphQL [DateTime scalar](https://www.graphql-scalars.com/date-time/) is, generally, a `DateTimeOffset`, not a `DateTime`. Currently, using Snowflaqe to send exact moments in time to the server requires knowing the server's time zone (assuming...

Consider this query: ```graphql query MyFavorites { me { favorites { item { __typename ... on Order { id } } } } } ``` It fails with: > Missing...

Snowflaqe looks perfect for writing end-to-end tests against my GraphQL server. However, I also need to test subscriptions. Specifically, SSE-based subscriptions. Would be perfect if support for this could be...