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