Rent

type Rent {
  # Contact ID
  contactId: Int!

  # ID
  id: Int!

  # Place ID
  placeId: Int!

  # Get contact
  contact: Contact!

  # Get place
  place: Place!
}

Last updated