Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Description

Gatsby Source plugin for pulling Postman collections.

Learning Resources

How to install

npm install --save gatsby-source-postman

Examples of usage

In your gatsby-config.js :

{
  resolve: `gatsby-source-postman`,
  options: {
    apiToken: `<your Postman API token>`,
    collectionId: `<your Postman Collection id>`
  }
}

How to query for data

Query details from a Postman Collection

export const pageQuery = graphql`
{
  collection {
    id
    name
    description
  }
}
`;

Query all requests from the Postman Collection

export const query = graphql`
{
  allRequest {
    nodes {
      id
      name
      request {
        description
        method
        url {
          raw
        }
      }
    }
  }
}
`;
© 2023 Gatsby, Inc.