timbuckley
10/03/2017, 6:27 PMtype 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)?
type Foo extends Node {
id: ID!
name: String!
email: String!
bar: Bar!
}
type Bar extends Node {
id: ID!
name: String!
email: String!
}