Giter Club home page Giter Club logo

Comments (3)

jean9696 avatar jean9696 commented on May 21, 2024 2

Hi @justdvl, it does work. Here is an example we have

import { ApolloLink, NextLink, Operation } from '@apollo/client/link/core'
import { GraphQLWsLink } from '@apollo/client/link/subscriptions'
import { getMainDefinition, hasDirectives } from '@apollo/client/utilities'
import { createClient } from 'graphql-ws'

import { createHttpLink } from './httpLink'

export class GatewayLink extends ApolloLink {
  wsLink: ApolloLink
  httpLink: ApolloLink
  constructor(env: Envs, clientName: string) {
    super()
    this.wsLink = new GraphQLWsLink(
      createClient({
        url: YOUR URL HERE,
        lazy: true,
      })
    )
    this.httpLink = createHttpLink({
      uri:  YOUR URI HERE,
      headers: {
        'X-Request-From': clientName,
      },
    })
  }

  public request(operation: Operation, forward?: NextLink) {
    if (hasDirectives(['rest'], operation.query)) {
      return forward?.(operation) ?? null
    }
    const definition = getMainDefinition(operation.query)
    if (
      definition.kind === 'OperationDefinition' &&
      definition.operation === 'subscription'
    ) {
      return this.wsLink.request(operation, forward)
    }
    return this.httpLink.request(operation, forward)
  }
}

from apollo-multi-endpoint-link.

simxn1 avatar simxn1 commented on May 21, 2024 1

@jean9696 It is also worth noting that it is needed to check for typeof window !== 'undefined' and only then define the wsLink, like so:

 if (typeof window !== 'undefined') {
      this.wsLink = new GraphQLWsLink(
        createClient({
          lazy: true,
          url: 'ws://localhost:8080/graphql',
        }),
      )
   }

Otherwise I get this:

Error: WebSocket implementation missing; on Node you can `import WebSocket from 'ws';` and pass `webSocketImpl: WebSocket` to `createClient`

from apollo-multi-endpoint-link.

justdvl avatar justdvl commented on May 21, 2024

Thank you @jean9696. I assume I need to create 2 instances of GatewayLink, one for each BE service I connect to (as I need to maintain websocket with both services)?
How do I then use these instances with MultiAPILink? I am missing this last part.

Currently I have:

const httpLink = new MultiAPILink({
  createHttpLink: () => createHttpLink(),
  endpoints,
  httpSuffix: '',
  wsSuffix: '',
})
links.push(httpLink)

Thanks.

from apollo-multi-endpoint-link.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.