Deprecated Fields

As the GraphQL API evolves over time, we tag fields that are no longer used in production as @deprecated. These fields will provide a deprecation notice when using a GraphQL client such as the Playground.

The fields, unless otherwise noted, are never renamed or removed from our API. They may stop providing data, however for backwards compatibility of systems, the fields are left to resolve a value. These values may consist of: The actual value, null, or an empty array (depending on the type).

Version: 2023-07-31

  • yMax fields across all perils have been deprecated. These have been replaced with yAxisHeight and standardized to an integer value between 0-100.

    • PropertyHeatConsequencesCosts.averageCoolingDegreeDaysYMaxhas been depcreated. Please use averageCoolingDegreeDaysYAxisHeight

    • annualCoolingCostsYMax has been depcreated. Please use annualCoolingCostsYAxisHeight

    • estimatedEnergyConsumptionYMax has been deprecated. Please use estimatedEnergyConsuptionYAxisHeight instead

  • PropertyAVM is now deprecated and is no longer available.

  • EmberRiskRating is now deprecated. Please use emberPercent

  • PropertyWindProbabilityDirection.ssp is now deprecated and is no longer available.

  • propertyByLocationId is now deprecated and is no longer available.

Version: 2023-04-26

  • insuranceHippo is now deprecated. Please use <peril>.insuranceQuotes

v3.0 Deprecated Fields

  • LocalityFloodAAL has been deprecated in favor of flood.consequences

  • PropertyFloodAAL has been deprecated in favor of flood.consequences

Prior to v3.0 Deprecated Fields

Some fields were migrated from v1.3 of our REST API for backwards compatibility. These fields have been deprecated.

  • fsfLink - Originally used to link to Flood Factor, this field has been deprecated. Use <peril>.link instead (where location represents location type, peril is the climate peril.

query {
    <location> {
        <peril> {
                link
            }
        }
    }
}
  • flood.insurance has been removed. Please use <peril>.insuranceQuotes

query {
    property {
        <peril> {
            insuranceQuotes {
                ...
            }
        }
    }
}

Last updated