ENUM
PropertyTypeEnum
# GraphQL Schema definition
1 enum PropertyTypeEnum { 2 3 # string 4 5 6 # integer 7 8 9 # float 10 11 12 # decimal 13 14 15 # datetime 16 17 18 # time 19 20 21 # date 22 23 24 # binary 25 26 27 # boolean 28 29 30 # array of strings, will be deprecated in the future as current implementation 31 # prevents arrays of other types 32 33 34 # address 35 36 37 # file 38 39 40 # photo 41 42 43 # deprecated, please use string 44 45 46 # geojson 47 48 49 # upload 50 51 }