readQuery$IsHealthy method

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

Implementation

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