ModelPatch

open_in_new

A patch operation on a model, updates the specified fields, leaving the others unchanged. To clear a String field, use the empty string ("").

GraphQL Schema definition

  • input ModelPatch {
  • # Optionally update the internalId of the model.
  • # Use the empty string ("") to clear this value.
  • internalId: String
  • # Optionally update the display name of the model.
  • name: String
  • # Optionally update the description of the model.
  • description: String
  • # Optionally update the image associated with the model.
  • # This ID should be a reference to one of the values in assets/photos
  • image: ID
  • # Optionally update real estate listing information about the model.
  • mls: MlsDetailsPatch
  • # Optionally update settings associated with the model.
  • options: ModelOptionsPatch
  • # Optionally update publication details about the model.
  • # Note that `updateVisibility` must be used to change whether the model
  • # is public or private
  • publication: PublicationDetailsPatch
  • }