Socket
Book a DemoInstallSign in
Socket

@getstation/apollo-link-reactive-schema

Package Overview
Dependencies
Maintainers
6
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getstation/apollo-link-reactive-schema

Apollo Link that provides a reactive-graphql execution environment to perform operations on a provided reactive schema.

2.0.0
latest
Source
npmnpm
Version published
Maintainers
6
Created
Source

Requires @getstation/reactive-schema instead of reactive-schema.

See differences with `mesosphere/reactive-graphql

Apollo Link that provides a reactive-graphql execution environment to perform operations on a provided reactive schema.

Installation

npm install apollo-link-reactive-schema --save

Usage

import { ApolloClient } from 'apollo-client';
import { from } from 'rxjs';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { ReactiveSchemaLink } from 'apollo-link-reactive-schema';
import { gql } from 'graphql-tag';

import schema from './path/to/your/schema';

const graphqlClient = new ApolloClient({
  cache: new InMemoryCache(),
  link: new ReactiveSchemaLink({ schema }),
});

const query = gql`
  # don't forget the @live directive, otherwise you'll experience
  # difficulties with subscription>unsubscription>subscription
  query @live {
    someReactiveField
  }
`;

const $res = graphqlClient.watchQuery({ query });
$res.subscribe(res => console.log(res));

Options

The ReactiveSchemaLink constructor can be called with an object with the following properties:

  • schema: an executable graphql schema
  • context: an object passed to the resolvers, following the graphql specification or a function that accepts the operation and returns the resolver context.

FAQs

Package last updated on 11 Oct 2019

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.