Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tanner-west/f70de09989f5e90fa3f262f0736b8d42 to your computer and use it in GitHub Desktop.
Save tanner-west/f70de09989f5e90fa3f262f0736b8d42 to your computer and use it in GitHub Desktop.
type Question
@model
@auth(
rules: [
{allow: public, operations: [read], provider: apiKey}
{allow: private, operations: [create], provider: userPools}
]
) {
id: ID!
text: String!
answers: [String]!
correctAnswer: Int!
categories: [String]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment