rawStream property

Stream<QueryResult<Object?>> get rawStream

The raw GraphQL subscription stream.

Implementation

Stream<QueryResult> get rawStream {
  return client.subscribe(
    SubscriptionOptions(document: gql(document), variables: variables),
  );
}