
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
apollo-graphql-ws-link
Advanced tools
Just the graphql-ws "Client with Apollo Recipe" as package.
npm install apollo-graphql-ws-linknpm run install @apollo/client@^3.4.0 graphql@^15.5.0 graphql-ws@^5.3.0import { WebSocketLink } from 'apollo-graphql-ws-link'new WebSocketLink({ url: 'ws://localhost:3000/graphql' })import { ApolloClient, split, createHttpLink } from '@apollo/client'
import { WebSocketLink } from 'apollo-graphql-ws-link'
// create ws link - handling subscriptions
const wsLink = new WebSocketLink({
url: `ws://localhost:3000/graphql`
})
// create http link - handling mutations and queries
const httpLink = createHttpLink({
uri: `http://localhost:3000/graphql`
})
// Create client with links
// distinguish between subscriptions, queries and mutations
// ws link should handle subscriptions
// http link should handle mutations and queries
export const client = new ApolloClient({
link: split(
({ query }) => {
const mainDefinition = getMainDefinition(query)
// If current operation is a "subscription" -> return true. So ws link handles it, else use http link
if (mainDefinition.kind === 'OperationDefinition') {
return mainDefinition.operation === 'subscription'
} else {
return false
}
},
wsLink,
httpLink
)
})
FAQs
The graphql-ws apollo link recipe as package
The npm package apollo-graphql-ws-link receives a total of 9 weekly downloads. As such, apollo-graphql-ws-link popularity was classified as not popular.
We found that apollo-graphql-ws-link 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.