2.9.0 • Published 1 year ago

@habx/apollo-multi-endpoint-link v2.9.0

Weekly downloads
300
License
ISC
Repository
github
Last release
1 year ago

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

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(),
     }),
 ])
})

NB: Since default value of httpSuffix is /graphql, endpoints above will be transformed to https://housings.api/graphql and https://projects.api/graphql. If you do not have common suffix, you can pass an empty string as httpSuffix to avoid this transformation.

NB 2: Supports apollo-link-rest library

API
new MultiAPILink(config, request);
config
ParameterDescriptionDefaultRequired
endpointsDictionary of endpointsYes
defaultEndpointDefault endpointNo
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
prefixTypenamesAdd name argument passed in @api directive to every __typename contained in network data responseNo

Queries

Query with static api name :

query projectList($params: Params) @api(name: projects) {
  projects(params: $params) {
    nodes {
      id
      name
    }
  }
}
const response = useQuery(myQuery);

Query with dynamic api name

query projectList($params: Params) @api(contextKey: "apiName") {
  projects(params: $params) {
    nodes {
      id
      name
    }
  }
}
const response = useQuery(myQuery, { context: { apiName: "projects" } });

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 {}
    },
    ...
})
2.9.0

1 year ago

2.8.0

2 years ago

2.7.0

2 years ago

2.6.0

2 years ago

2.5.0

3 years ago

2.4.0

3 years ago

2.3.0

4 years ago

2.2.0

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.1.0

4 years ago