Skip to content

Instantly share code, notes, and snippets.

@danielrearden
Created May 15, 2020 04:06
Show Gist options
  • Save danielrearden/172b4308aa94f7c829360ec0fe0b58aa to your computer and use it in GitHub Desktop.
Save danielrearden/172b4308aa94f7c829360ec0fe0b58aa to your computer and use it in GitHub Desktop.
Making GraphQL Magic with Sqlmancer - 1
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