apollo lighthouse subscription link
1.0.0
Tautan apollo untuk berlangganan langganan Lighthouse graphql menggunakan saluran kehadiran Laravel Echo.
npm install @thekonz/apollo-lighthouse-subscription-link
# or
yarn add @thekonz/apollo-lighthouse-subscription-link
Versi mercusuar | Versi tautan | Komentar |
---|---|---|
5.2 dan di bawahnya | 1.1 dan di bawahnya | |
5.3 dan lebih tinggi | 1.2 ke atas | Nama acara diubah dari 'lighthouse.subscription' menjadi 'lighthouse-subscription' |
5.3 dan lebih tinggi | 1.3 ke atas | Dukungan untuk '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 ( )
Jangan ragu untuk berkontribusi pada paket ini menggunakan sistem masalah dan menarik permintaan di cabang develop
.
Pengujian unit otomatis harus ditambahkan atau diubah untuk menutupi perubahan Anda atau mereproduksi bug.