mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
20 lines
558 B
GraphQL
20 lines
558 B
GraphQL
query($projectId: ID!, $sourceBranches: [String!], $targetBranches: [String!], $state: MergeRequestState, $pageSize: Int = 100, $cursor: String) {
|
|
project(fullPath: $projectId) {
|
|
mergeRequests(sourceBranches: $sourceBranches, targetBranches: $targetBranches, state: $state, after: $cursor, first: $pageSize) {
|
|
nodes {
|
|
iid
|
|
targetBranch
|
|
sourceBranch
|
|
targetProject {
|
|
...project
|
|
}
|
|
sourceProject {
|
|
...project
|
|
}
|
|
}
|
|
pageInfo {
|
|
...pageInfo
|
|
}
|
|
}
|
|
}
|
|
} |