subscribe property

GraphqlOperation? subscribe

The operation used for any streaming data operations that should use GraphQL's subscription. Only the header of the operation is required. For example

subscription GetPerson($input: GetPersonInput!) {
  getPerson(input: $input) {}
}

Implementation

GraphqlOperation? get subscribe => null;