FSharp.Data.GraphQL


Resolve

Namespace: FSharp.Data.GraphQL.Types

Wrapper for a resolve method defined by the user or generated by a runtime.

Union Cases

Union CaseDescription
Async(input,output,expr)
Signature: (type) * (type) * Expr

Resolve field value as part of Async computation. input defines .NET type of the provided object output defines .NET type of the returned value expr is untyped version of Expr'Input->Async<'Output>>

Sync(input,output,expr)
Signature: (type) * (type) * Expr

Resolve field value in synchronous way. input defines .NET type of the provided object output defines .NET type of the returned value expr is untyped version of Expr'Input->'Output>

Undefined
Signature:

Resolve function hasn't been defined. Valid only for interface fields.

Instance members

Instance memberDescription
Expr
Signature: Expr

Returns an expression defining resolver function.

CompiledName: get_Expr

Fork me on GitHub