OBJECT

ImportedVideo

link GraphQL Schema definition

  • type ImportedVideo implements Node {
  • id: ID!
  • # The source of the import
  • type: ImportedVideoType!
  • # The status of the import from external network
  • importStatus: ImportedVideoImportStatus!
  • # The status of the export to post
  • exportStatus: ImportedVideoExportStatus
  • # The bucket of the video.
  • bucket: String
  • # The storage key of the video.
  • storageKey: String
  • videoID: String
  • accountID: String
  • userID: ID!
  • accountConnectionID: ID!
  • # The title of the video.
  • title: String
  • # The body/caption of the video.
  • body: String
  • createdAt: Time!
  • updatedAt: Time!
  • # The time the video was exported to a post
  • exportedAt: Time
  • # If the user has marked the video as ignored
  • ignored: Boolean!
  • # The time the video was created on the source platform
  • sourceCreatedAt: Time
  • workflowID: String
  • workflowRunID: String
  • # The user that owns the imported video
  • user: User!
  • # The account connection that owns the imported video
  • accountConnection: AccountConnection!
  • exportedVideo: Video
  • }