getGraphqlSubscriptionUrl(): string {
    const url = new URL(this.ws.baseUrl);
    url.pathname = this.graphql.pathname;
    return url.toString();
  }