apollo lighthouse subscription link
1.0.0
Un enlace de Apollo para suscribirse a las suscripciones de Lighthouse Graphql utilizando los canales de presencia de Laravel Echo.
npm install @thekonz/apollo-lighthouse-subscription-link
# or
yarn add @thekonz/apollo-lighthouse-subscription-link
Versión faro | Versión de enlace | Comentario |
---|---|---|
5.2 y por debajo | 1.1 y por debajo | |
5.3 y superior | 1.2 y superior | El nombre del evento cambió de 'lighthouse.subscription' a 'lighthouse-subscription' |
5.3 y superior | 1.3 y superior | Soporte para 'lighthouse.subscription.version' = 2 |
import ApolloClient from "@apollo/client" ;
import gql from "graphql-tag" ;
import Echo from "laravel-echo" ;
import { createLighthouseSubscriptionLink } from "@thekonz/apollo-lighthouse-subscription-link" ;
const echoClient = new Echo ( { ... } ) ;
const client = new ApolloClient ( {
link : ApolloLink . from ( [
createLighthouseSubscriptionLink ( echoClient ) ,
httpLink , // your existing http link to your graphql api
] ) ,
cache : new InMemoryCache ( ) ,
} ) ;
const subscriber = client
. subscribe ( {
query : gql `
subscription {
postUpdated {
id
title
}
}
` ,
} )
. subscribe ( ( postUpdated ) => {
console . log ( postUpdated ) ; // { id: 2, title: "New title" }
} ) ;
// stop listening to events
subscriber . unsubscribe ( )
No dude en contribuir a este paquete utilizando el sistema de problemas y las solicitudes de extracción en la rama develop
.
Se deben agregar o cambiar pruebas unitarias automatizadas para cubrir sus cambios o reproducir errores.