![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
graphql-pubnub-subscriptions
Advanced tools
This package implements the PubSubEngine Interface from the graphql-subscriptions package and also the new AsyncIterator interface. It allows you to connect your subscriptions manager to a PubNub PubSub mechanism to support multiple subscription manager instances.
npm install graphql-pubnub-subscriptions
or
yarn add graphql-pubnub-subscriptions
Define your GraphQL schema with a Subscription
type:
schema {
query: Query
subscription: Subscription
}
type Subscription {
messages: Result
}
type Result {
message: String!
}
Now, let's create a simple PNPubSub
instance:
import { PNPubSub } from '@pubnub/graphql-pubnub-subscriptions';
const pubsub = new PNPubSub();
Now, implement your Subscriptions type resolver, using the pubsub.asyncIterator
to map the event you need:
const SOME_CHANNEL = 'myChannel';
export const resolvers = {
Subscription: {
messages: {
subscribe: () => pubsub.asyncIterator(SOME_CHANNEL),
},
},
}
Subscriptions resolvers are not a function, but an object with
subscribe
method, that returnsAsyncIterable
.
Calling the method asyncIterator
of the PNPubSub
instance will subscribe to the topic provided and will return an AsyncIterator
binded to the PNPubSub instance and listens to any event published on that topic.
Now, the GraphQL engine knows that messages
is a subscription, and every time a message is published to that channel and subscribe key, the PNPubSub
will PUBLISH
the event to all other subscribed instances and those in their turn will emit the event to GraphQL using the next
callback given by the GraphQL engine.
The channel doesn't get created automatically, it has to be created beforehand.
If you publish non string data it gets stringified and you have to parse the received message data.
The received message from PubNub gets directly passed as payload to the resolve/filter function.
Assuming you have a Subscription defined in the schema like this:
type Subscription {
messages(channel: String!): Result
}
You can use the passed in channel like so:
export const resolvers = {
Subscription: {
messages: {
subscribe: (_, args) => pubsub.asyncIterator(args.channel),
},
},
}
NOTE: This is currently not implemented. Feel free to add this capability!
import { withFilter } from 'graphql-subscriptions';
export const resolvers = {
Subscription: {
messages: {
subscribe: withFilter(
(_, args) => pubsub.asyncIterator(args.channel),
(payload, variables) => payload, // NOT IMPLEMENTED
),
},
},
}
import { PNPubSub } from '@pubnub/graphql-pubnub-subscriptions';
const pubSub = new PNPubSub({
subscribeKey: 'some subscribe key',
publishKey: 'some publish key',
});
These are the options which are passed to the internal PubNub JS SDK. Please Note that not all options are implemented at this time and therefore may not pass through.
There's an additional option to send some console debugs during execution by passing a debug flag.
import { PNPubSub } from '@pubnub/graphql-pubnub-subscriptions';
const pubSub = new PNPubSub({
subscribeKey: 'some subscribe key',
publishKey: 'some publish key',
debug: true, // <-- Just add this flag!
});
FAQs
A GraphQL Subscriptions PubSub Engine for PubNub
The npm package graphql-pubnub-subscriptions receives a total of 4 weekly downloads. As such, graphql-pubnub-subscriptions popularity was classified as not popular.
We found that graphql-pubnub-subscriptions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.