1.0.10 • Published 4 years ago

gatsby-source-trello v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Gatsby Source From Trello Board.

npm MIT license Source plugin for pulling data into Gatsby from Trello using team.

Install

 npm install --save gatsby-source-trello

How to use

Use organization id or name for fetching data from the Trello API.

// In your  gatsby-config.js
plugins: [
  {
    resolve: 'gatsby-source-trello',
    options: {
      teamId: `your_team_id/name`,
      apiKey: `your_trello_access_token`,
      secret: `your_trello_secret`
    }
  },
]

How to query

It creates 3 different nodes: TrelloBoard , TrelloList, TrelloCard

Querying all boards

{
  allTrelloBoard {
    edges {
      node {
        id
        name
      }
    }
  }
}

Querying all lists

{
  allTrelloList {
    edges {
      node {
        id
        name
      }
    }
  }
}

Querying all cards

{
  allTrelloCard {
    edges {
      node {
        id
        name
      }
    }
  }
}
1.0.10

4 years ago

1.0.9

5 years ago

1.0.8

6 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago