UpdateEasementInput
Provides the fields and values to use when updating an easement.
input UpdateEasementInput {
id: ID!
status: ID
name: String
isNotarized: Boolean
notarialNumber: String
typeId: ID
startAt: Date
effectiveAt: Date
dueAt: Date
filePath: String
filesPath: String
notes: String
geometry: JSON
members: RelatedMembersInput
properties: EasementPropertiesInput
projects: RelatedProjectsInput
tasks: RelatedTasksInput
letters: RelatedLettersInput
structures: RelatedStructuresInput
}
Fields
UpdateEasementInput.id ● ID! non-null scalar
Specifies the easement to update.
UpdateEasementInput.status ● ID scalar
The easement's status.
UpdateEasementInput.name ● String scalar
The easement's name.
UpdateEasementInput.isNotarized ● Boolean scalar
Whether the easement has been notarized.
UpdateEasementInput.notarialNumber ● String scalar
The easement's notarial number.
UpdateEasementInput.typeId ● ID scalar
The easement's type. Only allowed when the new type belongs to the same numbering series as the current one. Cannot be cleared on numbered records; once the document is numbered this field is required.
UpdateEasementInput.startAt ● Date scalar
The easement's start date.
UpdateEasementInput.effectiveAt ● Date scalar
The easement's effective date.
UpdateEasementInput.dueAt ● Date scalar
The easement's due date.
UpdateEasementInput.filePath ● String scalar
The easement's file path.
UpdateEasementInput.filesPath ● String scalar
The easement's files path.
UpdateEasementInput.notes ● String scalar
The easement's notes.
UpdateEasementInput.geometry ● JSON scalar
The easement's geometry as GeoJSON. Optional top-level "color" (hex bg/line), "iconColor" (hex glyph) and "icon" (Iconify id) keys provide map styling.
UpdateEasementInput.members ● RelatedMembersInput input
The easement's members relation.
UpdateEasementInput.properties ● EasementPropertiesInput input
The easement's properties relation.
UpdateEasementInput.projects ● RelatedProjectsInput input
The easement's projects relation.
UpdateEasementInput.tasks ● RelatedTasksInput input
The easement's tasks relation.
UpdateEasementInput.letters ● RelatedLettersInput input
The easement's letters relation.
UpdateEasementInput.structures ● RelatedStructuresInput input
The easement's structures relation.
Member Of
updateEasement mutation