All Projects → Necmttn → gatsby-source-trello

Necmttn / gatsby-source-trello

Licence: MIT license
Source plugin for pulling data into Gatsby from Trello using

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gatsby-source-trello

Nextcloud Deck
📋 Android client for nextcloud deck app
Stars: ✭ 318 (+1414.29%)
Mutual labels:  trello, board
activity-timer
Activity timer powerup for Trello
Stars: ✭ 28 (+33.33%)
Mutual labels:  trello, board
react-native-dnd-board
A drag and drop Kanban board for React Native.
Stars: ✭ 41 (+95.24%)
Mutual labels:  trello, board
Boardforgithub
A small application to monitor your GitHub project web page in a webview-based native macOS app
Stars: ✭ 69 (+228.57%)
Mutual labels:  trello, board
React Trello
Pluggable components to add a kanban board to your application
Stars: ✭ 1,788 (+8414.29%)
Mutual labels:  trello
Waveboxapp
Wavebox Classic has been updated to Wavebox 10. Learn more Wavebox.io
Stars: ✭ 1,198 (+5604.76%)
Mutual labels:  trello
Liszt
A personal organization software with a script engine for automation
Stars: ✭ 72 (+242.86%)
Mutual labels:  trello
Trello Clone
A Trello clone made using Django and React
Stars: ✭ 70 (+233.33%)
Mutual labels:  trello
php-chess
A chess library for PHP.
Stars: ✭ 42 (+100%)
Mutual labels:  board
Whale
Unofficial Trello app 🐳
Stars: ✭ 248 (+1080.95%)
Mutual labels:  trello
Quantified Self
Self-knowledge through numbers
Stars: ✭ 118 (+461.9%)
Mutual labels:  trello
Matterllo
Simple integration between Trello and Mattermost: send Trello activity notifications to Mattermost channels
Stars: ✭ 81 (+285.71%)
Mutual labels:  trello
Board
Trello like kanban board. Based on Restya platform.
Stars: ✭ 1,815 (+8542.86%)
Mutual labels:  trello
Taskell
Command-line Kanban board/task manager with support for Trello boards and GitHub projects
Stars: ✭ 1,175 (+5495.24%)
Mutual labels:  trello
trello-habitica
Keep in sync your Trello cards with Habitica
Stars: ✭ 32 (+52.38%)
Mutual labels:  trello
Focalboard
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
Stars: ✭ 1,153 (+5390.48%)
Mutual labels:  trello
Trello Kanban Analysis Tool
💤 [Not maintained] Analyse Kanban metrics from a Trello board -
Stars: ✭ 110 (+423.81%)
Mutual labels:  trello
3llo
3llo - Trello interactive CLI aplication
Stars: ✭ 245 (+1066.67%)
Mutual labels:  trello
Integram
Integrate Telegram into your workflow – Trello, Gitlab, Bitbucket and other bots
Stars: ✭ 1,365 (+6400%)
Mutual labels:  trello
Trello Clone Vue Laravel
This is a Trello clone built using Laravel and Vue. You can read about how it was created in the series.
Stars: ✭ 88 (+319.05%)
Mutual labels:  trello

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
      }
    }
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].