OBJECT

getPrecondition

link GraphQL Schema definition

1Query getPrecondition {
2
3# Returns a Precondition by issue id.
4#
5#
6# Arguments
7# issueId: the issue id of the Precondition to be returned.
8getPrecondition(issueId: String): Precondition
9
10}

link Example

The Query below returns a Precondition.

{
    getPrecondition {
        issueId
        preconditionType {
            kind
            name
        }
    }
}

The Query below returns the Precondition with issue id 12345

{
    getPrecondition(issueId: "12345") {
        issueId
        definition
        jira(fields: ["assignee", "reporter"])
    }
}