OBJECT

Connector

Connector

link GraphQL Schema definition

  • type Connector {
  • # The id of the connector
  • id: UUID!
  • # The name of the connector, used for display in marketplace
  • name: String!
  • # Is connector private or public
  • isPrivate: Boolean!
  • isShowcase: Boolean!
  • isPremium: Boolean!
  • # The id of the client where connector could be installed. Useful if connector is
  • # private
  • clientId: LegacyId
  • # The id of the developer who created the connector
  • creatorId: LegacyId!
  • # The creation date
  • createdAt: DateTime!
  • # Last updated date
  • updatedAt: DateTime
  • # Last published version for this connector
  • currentVersion: ConnectorVersion
  • # Client details
  • client: Client
  • # Client details
  • connectorVersions: [ConnectorVersion!]
  • }