ContactCreateInput

input ContactCreateInput {
  # City
  city: String!
  
  # Email
  email: String
  
  # SecondName
  secondName: String
  
  # FirstName
  firstName: String
  
  # MiddleName
  middleName: String
  
  # Phone
  phone: String!
  
  # Vehicle
  vehicle: VehicleCreateInput!
}

Параметры

  • vehicle - автомобиль пользователя

Last updated