hi guys. i’m trying to understand how to impl rela...
# orm-help
m
hi guys. i’m trying to understand how to impl relay-style connection pagination with the
graphql-schema
generated schema.graphql… say I have User -> [MessageThread] -> [Message] model, and I want both MessageThread, and Message to respond with the connection types, can/should I not use the generated schema file?
meaning, the generated schema file uses simple types (e.g.
messageThreads: [MessageThread]
), whereas I want it to be
messageTheads: MessageThreadConnection
. does that make sense?