Created
April 20, 2019 11:33
-
-
Save shailen-naidoo/a59f07fb0eee2b3b1226d999297d1ded to your computer and use it in GitHub Desktop.
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
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