OBJECT
ConnectorVersion
Connector version
link GraphQL Schema definition
- type ConnectorVersion {
- # The id of the connector version
- : UUID!
- # The Semver version, e.g. 1.1.3
- : String
- # The creation date
- : DateTime!
- # The publication date
- : DateTime
- # Last updated date
- : DateTime
- # The status of the connector version. Could be SANDBOX, REVIEW or PUBLISHED. See
- # ConnectorVersionStatus enum
- : ConnectorVersionStatus!
- # The submission date by the developer
- : DateTime
- # The description of the changes for this version. Equivalent to a changelog
- : String
- # The name of this version
- : String!
- # The description of the version
- : String
- # Privacy of the version. Private version will be only available for the client
- # identifier defined in the connector
- : Boolean!
- # List of the screenshots. See ConnectorScreenshot type
- : [ConnectorScreenshot!]!
- # The logo of this version
- : URL
- # The connector this version belongs to
- : Connector
- # List of the parameters
- : [ConnectorVersionParameter!]
- }