Skip to content

Instantly share code, notes, and snippets.

@shailen-naidoo
Created April 20, 2019 11:33
Show Gist options
  • Save shailen-naidoo/a59f07fb0eee2b3b1226d999297d1ded to your computer and use it in GitHub Desktop.
Save shailen-naidoo/a59f07fb0eee2b3b1226d999297d1ded to your computer and use it in GitHub Desktop.
enum Types {
IDNull = 'ID',
IDNonNull = 'ID!',
StringNull = 'String',
StringNonNull = 'String!',
IntNull = 'Int',
IntNonNull = 'Int!',
FloatNull = 'Float',
FloatNonNull = 'Float!',
BooleanNull = 'Boolean',
BooleanNonNull = 'Boolean!'
}
export default Types;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment