timbuckley
10/23/2017, 4:15 PMtype Foo @model {
  bars: [Bar!]! @relation(name: "FooBar")
}
...and I want to update it to...
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.