0.1.1 • Published 6 years ago

gatsby-source-prismic-fred v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

gatsby-source-prismic

Source plugin for pulling documents into Gatsby from prismic.io repositories.

Install

npm install --save gatsby-source-prismic

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: `gatsby-source-prismic`,
    options: {
      repositoryName: `your_repository_name`,
      accessToken: `your_acces_token`,
    },
  },
]

How to query

You can query Document nodes created from prismic.io like the following:

{
  allPrismicDocument {
    edges {
      node {
        id
        data {
          title {
            type
            text
          }
        }
      }
    }
  }
}