
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
@stnew/prismic-apollo-link
Advanced tools
This package exports:
prismicApolloLink - An ApolloLink to connect to Prismic's GraphQL APIInstall dependencies:
npm install @stnew/prismic-apollo-link @apollo/client prismic-javascript
To connect the the GraphQL API, create a new ApolloClient and pass the link to the constructor:
import { ApolloClient, InMemoryCache } from '@apollo/client'
import { prismicApolloLink } from ' @stnew/prismic-apollo-link'
export const prismicClient = new ApolloClient({
cache: new InMemoryCache(),
link: prismicApolloLink({
repositoryName: 'your-repository-name',
accessToken: 'YOUR_ACCESS_TOKEN',
}),
})
Now you can use this client to query the API.
import { prismicClient } from 'lib/prismic'
const { data } = await prismicClient.query({
query: gql`
query($lang: String!, $uid: String!) {
blog(lang: $lang, uid: $uid) {
title
}
}
`,
variables: {
uid: 'hello-world',
lang: 'en-us',
},
})
The prismicApolloLink takes a second argument which handles preview refs from Prismic. You can handle
this case by making your client a function that accepts the preview data as an argument.
export function prismicClient({ previewData }) {
return new ApolloClient({
cache: new InMemoryCache(),
link: prismicApolloLink({
repositoryName: 'your-repository-name',
accessToken: 'YOUR_ACCESS_TOKEN',
},
previewData,
),
})
}
And for example, in Next.js you would pass this data to the client.
export async function getStaticProps({ params, preview = false, previewData }) {
const response = await prismicClient({ previewData }).query({
query: gql`
query($lang: String!, $uid: String!) {
blog(lang: $lang, uid: $uid) {
title
}
}
`,
variables: {
uid: params.uid,
lang: 'en-us',
},
})
const data = response.data.blog
return {
props: {
data,
preview,
},
}
}
FAQs
An ApolloLink to connect to Prismic's GraphQL API
We found that @stnew/prismic-apollo-link demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.