{"id":22485928,"url":"https://github.com/lukehorvat/graphql-trello","last_synced_at":"2025-10-11T01:31:26.039Z","repository":{"id":57253698,"uuid":"80717708","full_name":"lukehorvat/graphql-trello","owner":"lukehorvat","description":"GraphQL interface to Trello's API.","archived":false,"fork":false,"pushed_at":"2018-05-13T14:38:32.000Z","size":8,"stargazers_count":18,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-23T15:14:03.482Z","etag":null,"topics":["api","graphql","trello"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lukehorvat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-02T11:13:13.000Z","updated_at":"2024-02-02T18:25:47.000Z","dependencies_parsed_at":"2022-08-31T22:12:06.529Z","dependency_job_id":null,"html_url":"https://github.com/lukehorvat/graphql-trello","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukehorvat%2Fgraphql-trello","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukehorvat%2Fgraphql-trello/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukehorvat%2Fgraphql-trello/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukehorvat%2Fgraphql-trello/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lukehorvat","download_url":"https://codeload.github.com/lukehorvat/graphql-trello/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236016494,"owners_count":19081747,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","graphql","trello"],"created_at":"2024-12-06T17:13:30.188Z","updated_at":"2025-10-11T01:31:18.775Z","avatar_url":"https://github.com/lukehorvat.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# graphql-trello [![NPM version](http://img.shields.io/npm/v/graphql-trello.svg?style=flat-square)](https://www.npmjs.org/package/graphql-trello)\n\n[GraphQL](http://graphql.org) interface to [Trello](https://trello.com)'s API.\n\n## Installation\n\nInstall the package with NPM:\n\n```bash\n$ npm install graphql-trello\n```\n\n## Usage\n\nExample:\n\n```javascript\nimport graphqlTrello from \"graphql-trello\";\n\nlet query = `\n  query($boardId: String!) {\n    getBoard(boardId: $boardId) {\n      id\n      name\n      lists {\n        id\n        name\n        cards {\n          id\n          name\n          comments {\n            id\n            content\n          }\n        }\n      }\n      members {\n        id\n        username\n      }\n    }\n  }\n`;\n\ngraphqlTrello({\n  query,\n  variables: { boardId: \"TRELLO_BOARD_ID\" },\n  key: \"TRELLO_KEY\",\n  token: \"TRELLO_TOKEN\",\n}).then(data =\u003e {\n  let board = data.getBoard;\n  console.log(board);\n}).catch(error =\u003e {\n  console.error(error);\n});\n```\n\nSee the [examples](examples) directory for more!\n\n## Related\n\nCheck out my other Trello packages:\n\n- [create-trello-webhook](https://github.com/lukehorvat/create-trello-webhook)\n- [delete-trello-webhook](https://github.com/lukehorvat/delete-trello-webhook)\n- [verify-trello-webhook](https://github.com/lukehorvat/verify-trello-webhook)\n- [get-trello-board](https://github.com/lukehorvat/get-trello-board)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukehorvat%2Fgraphql-trello","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukehorvat%2Fgraphql-trello","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukehorvat%2Fgraphql-trello/lists"}