turbot / steampipe-plugin-jira

Use SQL to instantly query Jira. Open source CLI. No DB required.
https://hub.steampipe.io/plugins/turbot/jira
Apache License 2.0
22 stars 14 forks source link

Fixed table jira_board only fetching first page of results Closes #126 #127

Closed ParthaI closed 3 months ago

ParthaI commented 3 months ago

Example query results

Results ``` > select id, name, type from jira_board +----+----------------+--------+ | id | name | type | +----+----------------+--------+ | 1 | TEST board | simple | | 3 | TUTORIAL board | simple | | 2 | SSP board | scrum | | 4 | TEST1 board | scrum | | 5 | USERMGMT board | kanban | +----+----------------+--------+ Time: 1.3s. Rows returned: 5. Rows fetched: 5. Hydrate calls: 0. ```