Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

0.10.2

Compare
Choose a tag to compare
@craicoverflow craicoverflow released this 10 Jan 15:51
· 1996 commits to master since this release
ff272c8

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.