npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iwatakeshi/apollo-link-prismic

v1.2.1

Published

Apollo link for Prismic

Downloads

84

Readme

apollo-link-prismic

npm version License

An Apollo Link that allows you to query Prismic's GraphQL API with Apollo Client.

Installation

npm install @iwatakeshi/apollo-link-prismic

Usage

Basic Usage

import { ApolloClient, InMemoryCache } from '@apollo/client';
import { createPrismicLink } from '@iwatakeshi/apollo-link-prismic';

const client = new ApolloClient({
  link: createPrismicLink({
    repositoryName: 'your-repo-name',
    // Provide an access token if your repository is secured
    accessToken: 'your-access-token',
  }),
  cache: new InMemoryCache(),
});

Custom GraphQL Endpoint

import { ApolloClient, InMemoryCache } from '@apollo/client';
import { createPrismicLink } from '@iwatakeshi/apollo-link-prismic';

const client = new ApolloClient({
  link: createPrismicLink({
    uri: 'https://your-repo.cdn.prismic.io/graphql',
    accessToken: 'your-access-token',
  }),
  cache: new InMemoryCache(),
});

Providing a Custom Fetch Function

If you're using this in an environment where a global fetch function doesn't exist (like Node.js), you can provide your own:

import { ApolloClient, InMemoryCache } from '@apollo/client';
import { createPrismicLink } from '@iwatakeshi/apollo-link-prismic';
import fetch from 'node-fetch';

const client = new ApolloClient({
  link: createPrismicLink({
    repositoryName: 'your-repo-name',
    accessToken: 'your-access-token',
    fetch: fetch as any,
  }),
  cache: new InMemoryCache(),
});

React Native Setup

Using @iwatakeshi/apollo-link-prismic in React Native requires a URL polyfill:

npm install react-native-url-polyfill

Then import the polyfill in your app's entry file:

// App.js or index.js
import 'react-native-url-polyfill/auto';

// Your app code here...

API Reference

createPrismicLink(config)

Creates an Apollo Link for querying a Prismic GraphQL API.

Parameters

  • config (Object): Configuration options
    • repositoryName (string, optional): The name of your Prismic repository
    • uri (string, optional): The GraphQL API endpoint URL
    • accessToken (string, optional): Access token for secured repositories
    • apiEndpoint (string, optional): Custom REST API endpoint for Prismic
    • fetch (function, optional): Custom fetch function

Note: Either repositoryName or uri must be provided.

Returns

An Apollo Link instance configured for your Prismic repository.

Legacy API

For backward compatibility, PrismicLink is available as an alias for createPrismicLink:

import { PrismicLink } from '@iwatakeshi/apollo-link-prismic';

// This is the same as createPrismicLink
const link = PrismicLink({
  repositoryName: 'your-repo-name',
});

Development

Setup

git clone https://github.com/iwatakeshi/apollo-link-prismic.git
cd apollo-link-prismic
npm install

Scripts

  • npm run build - Build the library
  • npm run dev - Build in watch mode
  • npm test - Run tests
  • npm run test:watch - Run tests in watch mode
  • npm run lint - Lint the code
  • npm run format - Format code with Prettier

License

Apache 2.0 - See LICENSE file for details.

Contributing

Issues and pull requests are welcome! Please check the issues page before submitting.

Credits

This package is a modernized fork of the original apollo-link-prismic by Prismic.