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