apollo lighthouse subscription link
1.0.0
Ein Apollo-Link zum Abonnieren von Lighthouse-GraphQL-Abonnements über Laravel Echo-Präsenzkanäle.
npm install @thekonz/apollo-lighthouse-subscription-link
# or
yarn add @thekonz/apollo-lighthouse-subscription-link
Leuchtturmversion | Linkversion | Kommentar |
---|---|---|
5.2 und darunter | 1.1 und darunter | |
5.3 und höher | 1.2 und höher | Der Veranstaltungsname wurde von „lighthouse.subscription“ in „lighthouse-subscription“ geändert. |
5.3 und höher | 1.3 und höher | Unterstützung für '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 ( )
Fühlen Sie sich frei, zu diesem Paket beizutragen, indem Sie das Issue-System und Pull-Requests im develop
nutzen.
Automatisierte Komponententests müssen hinzugefügt oder geändert werden, um Ihre Änderungen abzudecken oder Fehler zu reproduzieren.