35 lines
680 B
Swift
35 lines
680 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Amplify
|
|
import Foundation
|
|
|
|
extension UserProfile {
|
|
|
|
// MARK: - CodingKeys
|
|
public enum CodingKeys: String, ModelKey {
|
|
case id
|
|
case account
|
|
}
|
|
|
|
public static let keys = CodingKeys.self
|
|
|
|
// MARK: - ModelSchema
|
|
|
|
public static let schema = defineSchema { model in
|
|
let profile = UserProfile.keys
|
|
|
|
model.fields(
|
|
.id(),
|
|
.belongsTo(profile.account,
|
|
ofType: UserAccount.self,
|
|
associatedWith: UserAccount.keys.profile)
|
|
)
|
|
}
|
|
|
|
}
|