OBJECT

ImportRecipe

types.import_recipe

link GraphQL Schema definition

  • type ImportRecipe {
  • # The ID of the entity.
  • id: Int64Bit!
  • # The ID of a User.
  • user_id: Int64Bit
  • # The identifier of a unique batch at Flatfile.
  • flatfile_batch_identifier: String
  • # The unique identifier of an import at Sonar.
  • sonar_batch_identifier: String
  • # The status.
  • status: ImportStatus
  • # The progress of an import as a percentage.
  • progress: Int64Bit
  • # Any errors encountered for this import.
  • errors: Clob
  • # How many records passed validation checks during import.
  • clean_records: Int64Bit
  • # How many records did not pass validation checks during import.
  • failed_records: Int64Bit
  • # A hash of the data content of an import.
  • hash: String
  • # The date and time that this starts.
  • start_datetime: Datetime
  • # The connection wrapper around the `Import` type.
  • imports: ImportConnection!
  • }

link Require by