Start the bulk import of a given type WIll import all documents of a given type from the importStore to the prisma store optionally limited by the limit parameter

  • Type Parameters

    Parameters

    • typeName: string

      the type to import

    • importStore: AbstractDatastore

      the store to import from

    • prisma: TPrisma

      the prisma client to import to

    • limit: number

      how many documents to import

    • result: CountAndIterable<any>
    • options: {
          IRItoId?: IRIToStringFn;
          typeIsNotIRI?: boolean;
          typeNameToTypeIRI?: StringToIRIFn;
      } = {}

    Returns Promise<void>