@@ -10,14 +10,14 @@ module Types
1010
1111 # Starship Specific Fields
1212
13- field :starshipClass , types . String do
13+ field :starshipClass , ! types . String do
1414 description "The class of this starship, such as \" Starfighter\" or \" Deep Space Mobile Battlestation\" "
1515 property :starship_class
1616 end
1717
18- field :hyperdriveRating , types . Float , "The class of this starships hyperdrive." , property : :hyperdrive_rating
18+ field :hyperdriveRating , ! types . Float , "The class of this starships hyperdrive." , property : :hyperdrive_rating
1919
20- field :MGLT , types . Int do
20+ field :MGLT , ! types . Int do
2121 description "
2222 The Maximum number of Megalights this starship can travel in a standard hour.
2323 A \" Megalight\" is a standard unit of distance and has never been
@@ -30,7 +30,7 @@ module Types
3030
3131 # Transport Interface Fields
3232
33- field :name , types . String , "The name of this starship. The common name, such as \" Death Star\" ."
33+ field :name , ! types . String , "The name of this starship. The common name, such as \" Death Star\" ."
3434 field :model , types . String , "The model or official name of this starship. Such as \" T-65 X-wing\" or \" DS-1 Orbital Battle Station\" ."
3535
3636 field :manufacturer , types . String , "The manufacturer of this starship."
@@ -53,8 +53,8 @@ module Types
5353 field :consumables , types . String , "The maximum length of time that this starship can provide consumables for its entire crew without having to resupply."
5454 connection :pilots , Graph ::Types ::Person . connection_type
5555
56- field :created_at , types . String , "The ISO 8601 date format of the time that this resource was created."
57- field :updated_at , types . String , "The ISO 8601 date format of the time that this resource was updated."
56+ field :created_at , ! types . String , "The ISO 8601 date format of the time that this resource was created."
57+ field :updated_at , ! types . String , "The ISO 8601 date format of the time that this resource was updated."
5858 end
5959 end
6060end
0 commit comments