jira.metadata {nJira} | R Documentation |
Returns the 'metadata' of Jira which includes 'table' and 'field' names, valid for respective Jira installation. These table and field names can be referred while creating a Jira Query.
jira.metadata(table = NULL, fields = NULL)
table |
Name of the Jira tables. If not specified, all the tables of the given interface are returned. |
fields |
List of field names whose details are required. If not specified, all the fields of the specified tables are returned. |
Data frame of Jira tables and field names.
fields <- jira.metadata()
fields <- jira.metadata(table = "history")
fields <- jira.metadata(table = "issues")
fields <- jira.metadata(table = "issues", fields = c("Created", "Date Required", "Dev Status"))