coerceToInputObject method

  1. @override
GraphQLType<List<Value>, List<Serialized>> coerceToInputObject()
override

Turns this type into one suitable for being provided as an input to a GraphQLObjectField.

Implementation

@override
GraphQLType<List<Value>, List<Serialized>> coerceToInputObject() =>
    GraphQLListType<Value, Serialized>(ofType.coerceToInputObject());