UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Is this type of relationship Model valid in SwiftData?

Forums > SwiftUI

Fighting some issues in an app I converted to SwiftData and I can't find documentation that explicitly says I am allowed this type of inter-connected relationship?;

@Model final class Regatta: Equatable {
    @Relationship(deleteRule: .cascade, inverse: \Race.regatta) var races : [Race]?
    @Relationship(deleteRule: .cascade, inverse: \Skipper.regatta) var skippers: [Skipper]?

}

@Model class Skipper: Identifiable, Hashable, Comparable {
    var regatta: Regatta?
    var firstName: String
    var lastName: String
    var sailNum: Int
    ...
    @Relationship(deleteRule: .cascade, inverse: \RaceScore.skipper) var raceScores : [RaceScore]?
}

@Model final class Race: Identifiable, Hashable {
    @Relationship(deleteRule: .cascade, inverse: \RaceScore.race) var raceScores: [RaceScore]?

    var regatta : Regatta?
}

@Model final class RaceScore: ObservableObject, Hashable, Identifiable {

    var race : Race?
    var skipper : Skipper?
    ...
    var sailNum: Int {
        skipper?.sailNum ?? 0
    }
}

   

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.