jira.metadata {nJira}R Documentation

Jira Tables and Field Details

Description

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.

Usage

jira.metadata(table = NULL, fields = NULL)

Arguments

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.

Value

Data frame of Jira tables and field names.

Examples

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"))


[Package nJira version 0.1.1 Index]