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

get_model_versions.query.graphql « queries « graphql « model_registry « ml « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b48a67a0bd3ead5465094886f6e234b07f5a798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query getModelVersions($id: MlModelID!, $first: Int, $last: Int, $after: String, $before: String) {
  mlModel(id: $id) {
    id
    versions(after: $after, before: $before, first: $first, last: $last) {
      count
      nodes {
        id
        version
        createdAt
        _links {
          showPath
        }
      }
      pageInfo {
        hasNextPage
        hasPreviousPage
        endCursor
        startCursor
      }
    }
  }
}