FSharp.Data.GraphQL


ExecutionStrategy

Namespace: FSharp.Data.GraphQL.Types

Execution strategy for provided queries. Defines if object fields should be resolved either sequentially one-by-one or in parallel.

Union Cases

Union CaseDescription
Parallel
Signature:

Object fields will be reslved in parallel. It's only valid for read-only operations like queries. It's not valid for mutations.

Sequential
Signature:

Object fields will be resolved one-by-one. This is default option for mutations.

Fork me on GitHub