Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created April 19, 2019 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amandeepmittal/f0b73658ddcc0272f84995e410699050 to your computer and use it in GitHub Desktop.
Save amandeepmittal/f0b73658ddcc0272f84995e410699050 to your computer and use it in GitHub Desktop.
// eslint-disable
// this is an auto generated file. This will be overwritten
export const getNote = `query GetNote($id: ID!) {
getNote(id: $id) {
id
note
}
}
`
export const listNotes = `query ListNotes(
$filter: ModelNoteFilterInput
$limit: Int
$nextToken: String
) {
listNotes(filter: $filter, limit: $limit, nextToken: $nextToken) {
items {
id
note
}
nextToken
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment