Title
t

timbuckley

10/10/2017, 9:01 PM
Question: Is it possible/okay to use a node as reference without making a corresponding
@relation
?
type Person {
  pets: [Pet!]!     <- like that
  name: String!
}

type Pet {
  name: String!
}
a

agartha

10/10/2017, 9:18 PM
No
l

lancej

10/11/2017, 12:30 AM
Only way would be to store the ids as a string array. But you would have to manually manage things yourself and would not be able to use the power of hierarchical nature of graphql