Created
May 15, 2020 04:06
-
-
Save danielrearden/172b4308aa94f7c829360ec0fe0b58aa to your computer and use it in GitHub Desktop.
Making GraphQL Magic with Sqlmancer - 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Customer @model( | |
table: "customers" | |
pk: "CustomerId" | |
) { | |
id: ID! @col(name: "CustomerId") | |
firstName: String! | |
lastName: String! | |
email: String! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment