readQuery$IsHealthy method
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);
}