OBJECT

ConnectorVersion

Connector version

link GraphQL Schema definition

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