gatsby-source-postman

1.0.2 • Public • Published

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
        }
      }
    }
  }
}
`;

Package Sidebar

Install

npm i gatsby-source-postman

Weekly Downloads

5

Version

1.0.2

License

MIT

Unpacked Size

3.1 kB

Total Files

4

Last publish

Collaborators

  • impauloalves