Region
type Region = {
__typename?: 'Region'; /** The two-letter code for the region, such as TX for Texas. */
code?: Maybe<Scalars['String']['output']>; /** The unique ID for a `Region` object. */
id?: Maybe<Scalars['Int']['output']>; /** The name of the region, such as Texas. */
name?: Maybe<Scalars['String']['output']>;
};