INPUT_OBJECT

PlatformVersionInput

Information required to create a new PlatforVersion. After creation, a version can be updated with the setCurrentPlatformVersion mutation, but no other changes are supported.

link GraphQL Schema definition

1input PlatformVersionInput {
5
2# Optional unique identifier for the new version. If omitted, a unique identifier
3# will be automatically generated.
4id: ID
8
6# The platform version
7version: String!
11
9# The version manifest file location.
10manifestUrl: String
14
12# The version change log file location.
13changeLogUrl: String
17
15# The version highlight file location.
16highlightsUrl: String
18}