All Projects → lukehorvat → graphql-trello

lukehorvat / graphql-trello

Licence: MIT license
GraphQL interface to Trello's API.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to graphql-trello

3llo
3llo - Trello interactive CLI aplication
Stars: ✭ 245 (+1341.18%)
Mutual labels:  trello
trello-full-backup
Python script to backup everything from Trello: boards, lists, cards and attachments
Stars: ✭ 119 (+600%)
Mutual labels:  trello
layout-trello
Chrome extension that allows Trello lists to be displayed vertically or in a grid.
Stars: ✭ 65 (+282.35%)
Mutual labels:  trello
trello-habitica
Keep in sync your Trello cards with Habitica
Stars: ✭ 32 (+88.24%)
Mutual labels:  trello
strelloids
Browser extension for Trello that adds new features.
Stars: ✭ 29 (+70.59%)
Mutual labels:  trello
bug2trello
A Chrome extension to add bugs/issues to a Trello board
Stars: ✭ 21 (+23.53%)
Mutual labels:  trello
Board
Trello like kanban board. Based on Restya platform.
Stars: ✭ 1,815 (+10576.47%)
Mutual labels:  trello
gBoards
Trello like Angular Application
Stars: ✭ 21 (+23.53%)
Mutual labels:  trello
vuejs-trello-clone
A Trello clone using VueJS
Stars: ✭ 85 (+400%)
Mutual labels:  trello
Unity-Trello
☑️️ Generate Trello cards directly from Unity
Stars: ✭ 34 (+100%)
Mutual labels:  trello
gatsby-source-trello
Source plugin for pulling data into Gatsby from Trello using
Stars: ✭ 21 (+23.53%)
Mutual labels:  trello
trello-super-powers
Repository of the Firefox add-on. (https://addons.mozilla.org/en-US/firefox/addon/trello-super-powers/)
Stars: ✭ 29 (+70.59%)
Mutual labels:  trello
trello-postman-collection
A Postman collection for Trello REST API
Stars: ✭ 20 (+17.65%)
Mutual labels:  trello
Whale
Unofficial Trello app 🐳
Stars: ✭ 248 (+1358.82%)
Mutual labels:  trello
Trellis
A simplified Trello clone built with React, Redux, Node, Express and MongoDB.
Stars: ✭ 116 (+582.35%)
Mutual labels:  trello
Trello Cli
Command line client for Trello
Stars: ✭ 242 (+1323.53%)
Mutual labels:  trello
tickety-tick
A browser extension that helps you name branches and write better commit messages
Stars: ✭ 55 (+223.53%)
Mutual labels:  trello
rss2trello
Automatically check your favorite RSS feed for new articles and create Trello cards for each one.
Stars: ✭ 29 (+70.59%)
Mutual labels:  trello
Trello-
🏷️看板、todolist、trello、vue
Stars: ✭ 22 (+29.41%)
Mutual labels:  trello
dlang-bot
dlang-bot for automated bugzilla, github, and trello references
Stars: ✭ 20 (+17.65%)
Mutual labels:  trello

graphql-trello NPM version

GraphQL interface to Trello's API.

Installation

Install the package with NPM:

$ npm install graphql-trello

Usage

Example:

import graphqlTrello from "graphql-trello";

let query = `
  query($boardId: String!) {
    getBoard(boardId: $boardId) {
      id
      name
      lists {
        id
        name
        cards {
          id
          name
          comments {
            id
            content
          }
        }
      }
      members {
        id
        username
      }
    }
  }
`;

graphqlTrello({
  query,
  variables: { boardId: "TRELLO_BOARD_ID" },
  key: "TRELLO_KEY",
  token: "TRELLO_TOKEN",
}).then(data => {
  let board = data.getBoard;
  console.log(board);
}).catch(error => {
  console.error(error);
});

See the examples directory for more!

Related

Check out my other Trello packages:

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].