On an unrelated note, is there anyway to have em...
# prisma-whats-new
m
On an unrelated note, is there anyway to have embedding objects besides relations between top level nodes? Something like:
Copy code
type Test {
  num: Float!
  text: String!
}

type TestTwo implements Node {
  tt: Test
  foo: Int
}