TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

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
    }
}

   

Hacking with Swift is sponsored by Superwall.

SPONSORED Superwall lets you build & test paywalls without shipping updates. Run experiments, offer sales, segment users, update locked features and more at the click of button. Best part? It's FREE for up to 250 conversions / mo and the Superwall team builds out 100% custom paywalls – free of charge.

Learn 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.