steampipe plugin install trello

Table: trello_search_board - Query Trello Boards using SQL

Trello is a web-based, Kanban-style, list-making application. It's a subsidiary of Atlassian, used for project management and task organization. Trello Boards are the primary components of the Trello system where cards (tasks) are created, organized, and managed.

Table Usage Guide

The trello_search_board table provides insights into Trello Boards that match a specific search query. As a project manager or team lead, explore board-specific details through this table, including board names, descriptions, and associated metadata. Utilize it to uncover information about boards, such as those related to specific projects, teams, or tasks, thereby facilitating efficient board management and task organization.

Important Notes

  • You must always include at least one search term in the where or join clause using the query column. You can narrow the results using the search qualifiers in any combination. See Trello search for details on the Trello query syntax.

Examples

List all boards with the word "test" in the name

Discover the segments that include the term "test" in their names, allowing for targeted analysis or management of these specific areas within your organization. This is useful for quickly identifying and focusing on testing-related tasks or projects.

select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = 'name:test';
select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = 'name:test';

List all boards that are starred

Explore which of your Trello boards have been marked as important by using the 'starred' feature. This helps prioritize tasks and focus on key projects.

select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = 'is:starred';
select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = 'is:starred';

List all boards that are closed

Discover the segments that include all boards which are no longer active. This could be beneficial for understanding the lifecycle of boards and identifying patterns or reasons for closure.

select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = '-is:open';
select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = '-is:open';

List all boards that are open and have the word "test" in the name

Discover the open boards that include 'test' in their name, useful for identifying specific project or task boards in a larger Trello organization.

select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = 'is:open name:test';
select
id,
name,
description,
id_organization,
closed,
url
from
trello_search_board
where
query = 'is:open name:test';

Schema for trello_search_board

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
closedbooleanIndicates whether the board is closed.
custom_fieldsjsonbThe custom fields associated to the board.
descriptiontextA description or summary of the board.
idtextThe unique identifier for the board.
id_organizationtextThe id of the organization associated with the board.
label_namesjsonbThe label names of the board.
nametextThe name of the board.
pinnedbooleanIndicates whether the board is pinned.
prefsjsonbThe preferences of the board.
querytext=The query provided for the search.
short_urltextThe shortened URL of the board.
starredbooleanIndicates whether the board is starred.
subscribedbooleanIndicates whether the board has been subscribed.
titletextThe title of the board.
urltextThe URL of the board.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- trello

You can pass the configuration to the command with the --config argument:

steampipe_export_trello --config '<your_config>' trello_search_board