Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_package_pipelines.query.graphql « queries « graphql « package_registry « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86e67320d6362b6a74f9d2d0c9ce099968727c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
query getPackagePipelines($id: PackagesPackageID!, $first: Int) {
  package(id: $id) {
    id
    pipelines(first: $first) {
      nodes {
        ref
        id
        sha
        createdAt
        commitPath
        path
        user {
          id
          name
        }
        project {
          id
          name
          webUrl
        }
      }
    }
  }
}