Question: I'm sure this has been discussed before,...
# prisma-whats-new
t
Question: I'm sure this has been discussed before, but how difficult is it to enter data according to fields like this...
Copy code
type Foo extends Node {
  fooName: String!
  fooEmail: String!
  barId: ID!
  barName: String!
  barEmail: String!
}
...And then reshape the schema according to this (better more idiomatic version)?
Copy code
type Foo extends Node {
  id: ID!
  name: String!
  email: String!
  bar: Bar!
}
type Bar extends Node {
  id: ID!
  name: String!
  email: String!
}