summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/package_registry/graphql/queries/get_package_pipelines.query.graphql
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
        }
      }
    }
  }
}