🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@joelmukuthu/apollo-multi-endpoint-link

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@joelmukuthu/apollo-multi-endpoint-link

Apollo link which add an api directive to fetch data from multi endpoints

latest
Source
npmnpm
Version
2.3.2
Version published
Maintainers
1
Created
Source

CircleCI Version Size License

Why ?

We wrote an article about why and how we did this link if you want more details.

Install

   npm i @habx/apollo-multi-endpoint-link

Setup

import { createHttpLink } from "apollo-link-http";

new ApolloClient({
 link: ApolloLink.from([
   new MultiAPILink({
       endpoints: {
           housings: 'https://housings.api',
           projects: 'https://projects.api',
           ...
       },
       createHttpLink: () => createHttpLink(),
     }),
 ])
})
API
  new MultiAPILink(config, request)
config
ParameterDescriptionDefaultRequired
endpointsDictionary of endpointsYes
createHttpLinkFunction to generate http link like apollo-link-httpYes
createWsLinkFunction to generate wsLink like apollo-link-wsNo
wsSuffixSuffix added to endpoint for subscriptions queries/graphql/subscriptionsNo
httpSuffixSuffix added to endpoint for http queries/graphqlNo
getContextCallback function called to set custom context like headersNo

Queries

  query projectList @api(name: projects) {
    projects {
      nodes {
        id
        name
      }
    }
  }

Setting custom context

Sometimes you might need to set custom apollo link context like headers for authentication purpose. This link allows it by doing as following.

new MultiAPILink({
    getContext: (endpoint) => {
      if (endpoint === 'yourendpoint-with-auth') {
        return ({
          headers: {
            'Authorization': 'xxxx',
          }
        })
      }
      return {}
    },
    ...
})

FAQs

Package last updated on 20 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts