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 String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

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.