EverReal
  • Introduction
  • Authentication
    • API ClientID and ClientSecret
    • Authentication limitations
  • Rate limiting
  • Helpers
    • Errors
    • Pagination
    • Formatting
  • How to guide
    • EverReal Data Import Process
      • Connect an Integration
      • Import Mappers
      • Ideal CSV Structure
      • Debug Imports
      • FAQ
    • Data import via GraphQL
  • Endpoints
    • Account users / members
    • Owners
      • Owners Query
      • Owners Mutation
    • Property Groups
      • Property Groups Query
      • Property Group Mutation
    • Properties
      • Properties Query
      • Properties Mutation
    • Units
      • Units Query
      • Units Mutation
    • Listing
      • Listing Query
      • Listing Mutation
    • Candidates
      • Candidates Query
      • Candidate Mutation
    • Messages
    • Contact Activites
    • Tenants
      • Tenants Query
      • Tenant Mutation
    • Contract
      • Contract Query
      • Contract Mutation
    • Contacts
      • Contact Mutation
      • Contact Query
    • Document management
      • Document management
      • Simple file upload
    • Tasks
      • Tasks Query
    • Protocols
      • Protocol Query
  • Webhooks
    • Owner Events
      • OWNER_CREATED
      • OWNER_UPDATED
      • OWNER_DELETED
    • Property Events
      • PROPERTY_CREATED
      • PROPERTY_UPDATED
      • PROPERTY_DELETED
    • Unit Events
      • UNIT_CREATED
      • UNIT_UPDATED
      • UNIT_DELETED
    • Listing Events
      • LISTING_ACTIVATED
      • LISTING_ARCHIVED
      • LISTING_UPDATED
      • LISTING_DEACTIVATED
      • LISTING_CREATED
      • LISTING_PUBLISHED_TO_CHANNEL
      • LISTING_UNPUBLISHED_FROM_CHANNEL
    • Candidates Events
      • CANDIDATE_PARSED
      • LISTING_CANDIDATE_APPLIED
    • Listing Contracting Events
      • LISTING_CONTRACT_FLOW_SIGNED
      • LISTING_CONTRACT_FLOW_PARTIALLY_SIGNED
      • LISTING_CONTRACT_FLOW_WITHDRAWN
      • LISTING_CONTRACT_FLOW_STARTED
    • Listing Scheduling Events
      • LISTING_CANDIDATE_SCHEDULE_TIMESLOT_BOOKING_REMOVED_CANDIDATE
      • LISTING_CANDIDATE_SCHEDULE_TIMESLOT_BOOKING_REMOVED_ADMIN
      • LISTING_CANDIDATE_SCHEDULE_TIMESLOT_BOOKED_CANDIDATE
      • LISTING_CANDIDATE_SCHEDULE_TIMESLOT_BOOKED_ADMIN
      • LISTING_CANDIDATE_SCHEDULE_NEW_TIMESLOTS_REQUESTED
      • LISTING_CANDIDATE_SCHEDULE_INVITED_VIEWING
    • Protocol Events
      • PROTOCOL_COMPLETED
  • Change log
    • Releases
      • Introducing Mappers
      • Enhancements for GraphQL
      • Enhancements for Querying
      • Enhancements for Webhooks
    • Upcoming
      • Introduced Querying Protocol in GraphQL
Powered by GitBook
On this page

Was this helpful?

  1. Change log
  2. Releases

Introducing Mappers

Release Date: 16 May 2023

PreviousReleasesNextEnhancements for GraphQL

Last updated 2 years ago

Was this helpful?

Release V2023.05.16

  • Introducing for ERP integrations.

Deprecation Warnings

Part of cleaning our graphQL we are planing to deprecate following keys from our graphQL endpoints by Oct 2023

  • Owner Module

    raw: RawInput @deprecated(reason: "raw is deprecated. Use meta instead with a source.")
    externalId: String @deprecated(reason: "externalId is deprecated. Use externalOwnerId instead.")
    street: String @deprecated(reason: "street is deprecated. Use address.streetName instead.")
    number: String @deprecated(reason: "number is deprecated. Use address.streetNumber instead.")
    zipCode: String @deprecated(reason: "zipCode is deprecated. Use address.zipCode instead.")
    city: String @deprecated(reason: "city is deprecated. Use address.city instead.")
    country: String @deprecated(reason: "country is deprecated. Use address.country instead.")
  • Property Module

    raw: PropertyRawInput @deprecated(reason: "raw is deprecated. Use meta instead with a source.")
    objectId: String @deprecated(reason: "objectId is deprecated. Use externalPropertyId instead.")
    owner: PropertyOwnerInput @deprecated(reason: "owner is deprecated. Use ownerId instead.")
    street: String @deprecated(reason: "address.street is deprecated. Use address.streetName instead.")
    number: String @deprecated(reason: "address.number is deprecated. Use address.streetNumber instead.")
    zip: String @deprecated(reason: "address.zip is deprecated. Use address.zipCode instead.")
  • Unit Module

    raw: PropertyRawInput @deprecated(reason: "raw is deprecated. Use meta instead with a source.")
    unitId: String @deprecated(reason: "unitId is deprecated. Use externalUnitId instead.")
    objectId: String @deprecated(reason: "objectId is deprecated. Use externalUnitId instead.")
    propertyObjectId: String @deprecated(reason: "propertyObjectId is deprecated. Use externalPropertyId instead.")
    floorNumber: Float @deprecated(reason: "floorNumber is deprecated. Use floorNo instead.")
  • Tenant Module

    raw: PropertyRawInput @deprecated(reason: "raw is deprecated. Use meta instead with a source.")
    externalId: String @deprecated(reason: "externalId is deprecated. Use externalTenantId instead.")
    nameOfTheUnit: String @deprecated(reason: "nameOfTheUnit is deprecated.")
    objectName: String @deprecated(reason: "objectName is deprecated.")
    startOfLease: String @deprecated(reason: "startOfLease is deprecated. Use contractStartDate instead.")
    endOfContract: String @deprecated(reason: "endOfContract is deprecated. Use contractEndDate instead.")
  • Listing Module

    availableFrom: Date @deprecated(reason: "ListingInformation.availableFrom will be moved to the main level.")
Mappers