This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
0.10.2
graphql-migrations
It's now possible to create database relationships from the 1:M
side of your data model!
type User {
id: ID!
messages: [Message]
}
This creates a userId
foreign key column in the message
table.