Zavgar API Docs
  • Добро пожаловать!
  • Reference
    • Zavgar API Reference
      • REST
        • /auth
      • GraphQL
        • Queries
          • freePlacesByInterval
          • objects
          • orders
          • places
          • placeStatusAtTime
        • Mutations
          • createPass
        • Types
          • Object
          • ObjectList
          • Contact
          • Order
          • OrderList
          • Place
          • PlaceStatusAtTime
          • PlaceStatusAtTimeList
          • PlaceList
          • Place
          • Pass
          • RentOrder
          • Rent
          • UserApplicationToken
          • Vehicle
          • Zone
        • Inputs
          • ObjectFiltersInput
          • PlaceFiltersInput
          • VehicleCreateInput
          • ContactCreateInput
          • OrderFiltersInput
          • PassCreateInput
        • Enums
          • PlaceStatus
          • DurationType
          • PassStatus
Powered by GitBook
On this page

Was this helpful?

  1. Reference
  2. Zavgar API Reference
  3. GraphQL
  4. Types

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!]!
}
PreviousObjectListNextOrder

Last updated 3 years ago

Was this helpful?