Contact

type Contact {
  id: Int!
  
  # Contact first name
  firstName: String

  # Contact middle name
  middleName: String

  # Contact phone
  phone: String

  # Contact second name
  secondName: String

  # Get contact fio. Example: "Bazarov Evgeny Vasilyevich"
  fio: String

  # Get contact short fio. Example: "Bazarov E. V."
  fioShort: String

  # Get one vehicle
  vehicle: Vehicle!

  # Get contact's vehicles
  vehicles: [Vehicle!]!
}

Last updated