apollo lighthouse subscription link
1.0.0
Laravel Echo プレゼンス チャネルを使用して Lighthousegraphql サブスクリプションをサブスクライブするための apollo リンク。
npm install @thekonz/apollo-lighthouse-subscription-link
# or
yarn add @thekonz/apollo-lighthouse-subscription-link
灯台バージョン | リンクバージョン | コメント |
---|---|---|
5.2以下 | 1.1以下 | |
5.3以降 | 1.2以降 | イベント名が「lighthouse.subscription」から「lighthouse-subscription」に変更されました |
5.3以降 | 1.3以降 | 「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 ( )
develop
ブランチの発行システムとプル リクエストを使用して、このパッケージに自由に貢献してください。
変更をカバーしたりバグを再現するには、自動化された単体テストを追加または変更する必要があります。