Swift: Upsert data

Examples

Upsert your data

struct Country: Encodable \{
  let id: Int
  let name: String
\}
try await supabase
  .from("countries")
  .upsert(Country(id: 1, name: "Albania"))
  .execute()

Bulk Upsert your data

struct Country: Encodable \{
  let id: Int
  let name: String
\}
try await supabase
  .from("countries")
  .upsert([
    Country(id: 1, name: "Albania"),
    Country(id: 2, name: "Algeria"),
  ])
  .execute()

Upserting into tables with constraints

struct User: Encodable \{
  let id: Int
  let handle: String
  let displayName: String

  enum CodingKeys: String, CodingKey \{
    case id
    case handle
    case displayName = "display_name"
  \}
\}

try await supabase
  .from("users")
  .upsert(
    User(id: 42, handle: "saoirse", displayName: "Saoirse"),
    onConflict: "handle"
  )
  .execute()