*Question*: If I have a schema that includes ``` t...
# prisma-whats-new
t
Question: If I have a schema that includes
Copy code
type Foo @model {
  bars: [Bar!]! @relation(name: "FooBar")
}
...and I want to update it to...
Copy code
type Foo @model {
  bar: Bar @relation(name: "FooBar")
}
...then Graphcool shouldn't have a problem with that, correct? Note that I already have an array of
Bar
ids uploaded to the
bars
field on each record in the
Foo
table.