readQuery$GetVersion method

Query$GetVersion? readQuery$GetVersion({
  1. bool optimistic = true,
})

Implementation

Query$GetVersion? readQuery$GetVersion({bool optimistic = true}) {
  final result = this.readQuery(
    graphql.Request(
      operation: graphql.Operation(document: documentNodeQueryGetVersion),
    ),
    optimistic: optimistic,
  );
  return result == null ? null : Query$GetVersion.fromJson(result);
}