Skip to main content

valueFromAST

Callable


  • Produces a JavaScript value given a GraphQL Value AST.

    A GraphQL type must be provided, which will be used to interpret different GraphQL Value literals.

    Returns undefined when the value could not be validly coerced according to the provided type.

    GraphQL ValueJSON Value
    Input ObjectObject
    ListArray
    BooleanBoolean
    StringString
    Int / FloatNumber
    Enum ValueUnknown
    NullValuenull

    Parameters

    Returns unknown