JSPM

pluralsh-absinthe-socket-apollo-link

0.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7848
  • Score
    100M100P100Q145380F
  • License MIT

Absinthe Socket Apollo Link

Package Exports

  • pluralsh-absinthe-socket-apollo-link
  • pluralsh-absinthe-socket-apollo-link/compat/cjs/index.js
  • pluralsh-absinthe-socket-apollo-link/dist/index.js
  • pluralsh-absinthe-socket-apollo-link/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pluralsh-absinthe-socket-apollo-link) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

dherault-absinthe-socket-apollo-link

Absinthe Socket Apollo Link

Installation

Using npm

$ npm install --save dherault-absinthe-socket-apollo-link

Using yarn

$ yarn add dherault-absinthe-socket-apollo-link

Examples

  1. Create AbsintheSocketLink (absinthe-socket-link.js)
// @flow

import * as AbsintheSocket from "@absinthe/socket";
import {createAbsintheSocketLink} from "@absinthe/socket-apollo-link";
import {Socket as PhoenixSocket} from "phoenix";

export default createAbsintheSocketLink(AbsintheSocket.create(
  new PhoenixSocket("ws://localhost:4000/socket")
));
  1. Send all the operations using AbsintheSocketLink
// @flow

import ApolloClient from "apollo-client";
import {InMemoryCache} from "apollo-cache-inmemory";

// see example 1
import absintheSocketLink from "./absinthe-socket-link";

const client = new ApolloClient({
  link: absintheSocketLink,
  cache: new InMemoryCache()
});
  1. Subscribe using AbsintheSocketLink and send queries and mutations using HttpLink
// @flow

import ApolloClient from "apollo-client";
import {createHttpLink} from "apollo-link-http";
import {hasSubscription} from "@jumpn/utils-graphql";
import {InMemoryCache} from "apollo-cache-inmemory";
import {split} from "apollo-link";

// see example 1
import absintheSocketLink from "./absinthe-socket-link";

const link = split(
  operation => hasSubscription(operation.query),
  absintheSocketLink,
  createHttpLink({uri: "/graphql"})
);

const client = new ApolloClient({
  link,
  cache: new InMemoryCache()
});

API

Creates a terminating ApolloLink to request operations using given AbsintheSocket instance

Parameters

  • absintheSocket AbsintheSocket
  • onError $ElementType<Observer<Result, Variables>, "onError">
  • onStart $ElementType<Observer<Result, Variables>, "onStart">

References

License

MIT ©️ Jumpn Limited.