Socket
Socket
Sign inDemoInstall

@subql/apollo-links

Package Overview
Dependencies
Maintainers
2
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@subql/apollo-links

SubQuery Network - graphql links


Version published
Weekly downloads
2K
decreased by-2.95%
Maintainers
2
Weekly downloads
 
Created
Source

Description

  • This package contains an extended version of apollo-link and various utilities to perform authentication with our network services.

  • This package is use to authenticate with the subquery network's auth center.

Usage

For example of usage see our test cases

import { ApolloClient, from, HttpLink, InMemoryCache } from '@apollo/client/core';
import { authHttpLink } from '@subql/apollo-links';
import fetch from 'cross-fetch'; // doesn't need to be this fetch library

const options = {
  authUrl: `http://example-url.com/token`,
  sk: '<insert secret key here>',
  indexer: '<insert indexer address here>',
  consumer: '<insert consumer address here>',
  chainId: 1287,
  deploymentId: '<insert deployment id here>',
  agreement: '<insert agreement id here>',
};

const link = await authHttpLink(options);
const client = new ApolloClient({
    cache: new InMemoryCache({ resultCaching: true }),
    link: from([authLink, new HttpLink({ uri, fetch })]),
});

const metadataQuery = gql`
  query Metadata {
    _metadata {
      indexerHealthy
      indexerNodeVersion
    }
  }
`

await client.query({ query: metadataQuery });

## ChangeLogs

[CHANGELOG.md](./CHANGELOG.md)

FAQs

Package last updated on 19 May 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc