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