comments: input_value

This commit is contained in:
Tobe O 2019-08-07 22:54:01 -04:00
parent fcbf95fc3f
commit c9473420e1

View file

@ -1,5 +1,7 @@
import 'node.dart'; import 'node.dart';
/// Represents a value in GraphQL.
abstract class InputValueContext<T> extends Node { abstract class InputValueContext<T> extends Node {
/// Computes the value, relative to some set of [variables].
T computeValue(Map<String, dynamic> variables); T computeValue(Map<String, dynamic> variables);
} }