
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.