A set of pull request queries and their results.

interface GitPullRequestQuery {
    queries?: GitPullRequestQueryInput[];
    results?: { [key: string]: GitPullRequest[] }[];
}

Properties

Properties

The queries to perform.

results?: { [key: string]: GitPullRequest[] }[]

The results of the queries. This matches the QueryInputs list so Results[n] are the results of QueryInputs[n]. Each entry in the list is a dictionary of commit->pull requests.