readQuery$searchCoaches method
Query$searchCoaches?
readQuery$searchCoaches({
- Variables$Query$searchCoaches? variables,
- bool optimistic = true,
Implementation
Query$searchCoaches? readQuery$searchCoaches({
Variables$Query$searchCoaches? variables,
bool optimistic = true,
}) {
final result = this.readQuery(
graphql.Request(
operation: graphql.Operation(document: documentNodeQuerysearchCoaches),
variables: variables?.toJson() ?? const {},
),
optimistic: optimistic,
);
return result == null ? null : Query$searchCoaches.fromJson(result);
}