Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

apollo-link-local

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-link-local

Apollo link that executes against a local schema

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Purpose

An Apollo Link to execute queries against a local schema. Useful for SSR query execution or client side schemas.

Installation

npm install apollo-link-local --save

Usage

import { LocalLink } from "apollo-link-local";
import { makeExecutableSchema } from "graphql-tools";

/* Generate an executable schema */
const schema = makeExecutableSchema({ typeDefs, resolvers });

const link = new LocalLink({ schema });

Context

The context generated by ApolloLink is handed to the GraphQL context at execution. If you need context available in a resolver pass it via a Link.

Why is this useful?

If you're building SSR and have access to the executable schema on the same server, you may find LocalLink makes good sense. It enables you to hydrate SSR state from without needing to make network calls.

Client side schemas

GraphQL typically requires mutual agreement to adopt the technology on both the server and client. However, there may be reasons why it's not practical to host a GraphQL service, whether organisational, technical, or otherwise.

Consider the case of a GraphQL service backed by an existing RESTful API. With LocalLink, the schema could exist and resolve to RESTful endpoints entirely client side allowing you to benefit from other Apollo tooling such as caching, query fragments, and more.

FAQs

Package last updated on 29 Nov 2017

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