How to Duplicate a SwiftData object

I have a SwiftData model called Workout that contains a array of Exercise Model which itself contains an array of Sets Model,

Before I had a copy method in these models for creating a new object from the properties of old objects and it worked correctly, but since introducing Relationships between these models whenever I try to call the copy method of Exercise I get the error message:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>Fatal error: Unsupported relationship key path ReferenceWritableKeyPath<MySet, Exercise>
</code>
<code>Fatal error: Unsupported relationship key path ReferenceWritableKeyPath<MySet, Exercise> </code>
Fatal error: Unsupported relationship key path ReferenceWritableKeyPath<MySet, Exercise>

This are the copy methods:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>@Model
class Workout: Identifiable {
var id: UUID
var name: String
@Relationship(deleteRule: .cascade, inverse: Exercise.workout) //when deleting a workout you delete all exericses that happened during that workout
var exercises: [Exercise]?
var startTime: Date
var endTime: Date
func copy() -> Workout {
let workout = Workout(id: UUID(), name: name, startTime: startTime, endTime: endTime)
workout.name = name
workout.startTime = Date.now
workout.endTime = Date.now
workout.exercises = exercises?.map { $0.copy() }
return workout
}
init(id: UUID, name: String = "", startTime: Date = Date.now, endTime: Date = Date.now) {
self.id = id
self.name = name
self.startTime = startTime
self.endTime = endTime
}
}
@Model
class Exercise: Identifiable {
var id: UUID
var exerciseName: ExerciseName
@Relationship(deleteRule: .cascade, inverse: MySet.exercise)
var sets: [MySet]? //When an Exercise gets Deleted all Sets associated need to get deleted
var date: Date
var workout: Workout
func copy() -> Exercise {
let newExercise = Exercise(id: UUID(), exerciseName: exerciseName, date: Date.now, workout: workout)
// Copy the related sets
if let existingSets = sets {
newExercise.sets = existingSets.map { set in
// Copy each set and associate it with the newExercise
let newSet = set.copy(exercise: newExercise)
return newSet
}
}
return newExercise
}
init(id: UUID, exerciseName: ExerciseName, date: Date, workout: Workout) {
self.id = id
self.exerciseName = exerciseName
self.date = date
self.workout = workout
}
}
@Model
class MySet: Identifiable {
var id: UUID
var weight: Int
var reps: Int
var isCompleted: Bool
var exercise: Exercise
var date: Date
//make a copy functionality so you can call this and pass it an Exercise when copying a Set
func copy(exercise: Exercise) -> MySet {
MySet(id: UUID(), weight: weight, reps: reps, isCompleted: isCompleted,date: Date.now , exercise: exercise)
}
init(
id: UUID,
weight: Int,
reps: Int,
isCompleted: Bool,
date: Date,
exercise: Exercise
) {
self.id = id
self.weight = weight
self.reps = reps
self.isCompleted = isCompleted
self.date = date
self.exercise = exercise
}
}
</code>
<code>@Model class Workout: Identifiable { var id: UUID var name: String @Relationship(deleteRule: .cascade, inverse: Exercise.workout) //when deleting a workout you delete all exericses that happened during that workout var exercises: [Exercise]? var startTime: Date var endTime: Date func copy() -> Workout { let workout = Workout(id: UUID(), name: name, startTime: startTime, endTime: endTime) workout.name = name workout.startTime = Date.now workout.endTime = Date.now workout.exercises = exercises?.map { $0.copy() } return workout } init(id: UUID, name: String = "", startTime: Date = Date.now, endTime: Date = Date.now) { self.id = id self.name = name self.startTime = startTime self.endTime = endTime } } @Model class Exercise: Identifiable { var id: UUID var exerciseName: ExerciseName @Relationship(deleteRule: .cascade, inverse: MySet.exercise) var sets: [MySet]? //When an Exercise gets Deleted all Sets associated need to get deleted var date: Date var workout: Workout func copy() -> Exercise { let newExercise = Exercise(id: UUID(), exerciseName: exerciseName, date: Date.now, workout: workout) // Copy the related sets if let existingSets = sets { newExercise.sets = existingSets.map { set in // Copy each set and associate it with the newExercise let newSet = set.copy(exercise: newExercise) return newSet } } return newExercise } init(id: UUID, exerciseName: ExerciseName, date: Date, workout: Workout) { self.id = id self.exerciseName = exerciseName self.date = date self.workout = workout } } @Model class MySet: Identifiable { var id: UUID var weight: Int var reps: Int var isCompleted: Bool var exercise: Exercise var date: Date //make a copy functionality so you can call this and pass it an Exercise when copying a Set func copy(exercise: Exercise) -> MySet { MySet(id: UUID(), weight: weight, reps: reps, isCompleted: isCompleted,date: Date.now , exercise: exercise) } init( id: UUID, weight: Int, reps: Int, isCompleted: Bool, date: Date, exercise: Exercise ) { self.id = id self.weight = weight self.reps = reps self.isCompleted = isCompleted self.date = date self.exercise = exercise } } </code>
@Model
class Workout: Identifiable {
    var id: UUID
    var name: String
    @Relationship(deleteRule: .cascade, inverse: Exercise.workout) //when deleting a workout you delete all exericses that happened during that workout
    var exercises: [Exercise]?
    var startTime: Date
    var endTime: Date
    
    func copy() -> Workout {
        let workout = Workout(id: UUID(), name: name, startTime: startTime, endTime: endTime)
          workout.name = name
          workout.startTime = Date.now
          workout.endTime = Date.now
          workout.exercises = exercises?.map { $0.copy() }
          return workout
      }
    
    init(id: UUID, name: String = "", startTime: Date = Date.now, endTime: Date = Date.now) {
        self.id = id
        self.name = name
        self.startTime = startTime
        self.endTime = endTime
    }
    
    

}



@Model
class Exercise: Identifiable {
    var id: UUID
    var exerciseName: ExerciseName
    
    @Relationship(deleteRule: .cascade, inverse: MySet.exercise)
    var sets: [MySet]?    //When an Exercise gets Deleted all Sets associated need to get deleted

    var date: Date
    var workout: Workout
 
    func copy() -> Exercise {
        let newExercise = Exercise(id: UUID(), exerciseName: exerciseName, date: Date.now, workout: workout)
        
        // Copy the related sets
        if let existingSets = sets {
            newExercise.sets = existingSets.map { set in
                // Copy each set and associate it with the newExercise
                let newSet = set.copy(exercise: newExercise)
                return newSet
            }
        }
        
        return newExercise
    }
    
    init(id: UUID, exerciseName: ExerciseName, date: Date, workout: Workout) {
        self.id = id
        self.exerciseName = exerciseName
        self.date = date
        self.workout = workout
    }

    
}


@Model
class MySet: Identifiable {
    var id: UUID
    var weight: Int
    var reps: Int
    var isCompleted: Bool
    
 
    var exercise: Exercise
    
    var date: Date
    
    //make a copy functionality so you can call this and pass it an Exercise when copying a Set
    func copy(exercise: Exercise) -> MySet {
        MySet(id: UUID(), weight: weight, reps: reps, isCompleted: isCompleted,date: Date.now , exercise: exercise)
        }
    
    init(
        id: UUID,
        weight: Int,
        reps: Int,
        isCompleted: Bool,
        date: Date,
        exercise: Exercise
        
    ) {
        self.id = id
        self.weight = weight
        self.reps = reps
        self.isCompleted = isCompleted
        self.date = date
        self.exercise = exercise
      
    }
    

    
}

Xcode says the error occurs in the set method of var sets: [MySet]?

why did these copy methods work before introducing an inverse relationships between these models and not now?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật