Skip to main content

UpdateOrdinanceInput

Provides the fields and values to use when updating an ordinance.

input UpdateOrdinanceInput {
id: ID!
parentId: ID
name: String
status: ID
externalCode: String
affectedParty: String
isPublic: Boolean
relatedId: ID
signedAt: Date
startAt: Date
dueAt: Date
completedAt: Date
filePath: String
filesPath: String
notes: String
members: OrdinanceRelatedMembersInput
projects: RelatedProjectsInput
tasks: RelatedTasksInput
letters: RelatedLettersInput
tags: RelatedTagsInput
}

Fields

UpdateOrdinanceInput.id ● ID! non-null scalar

Specifies the ordinance to update.

UpdateOrdinanceInput.parentId ● ID scalar

The ordinance's parent ordinance.

UpdateOrdinanceInput.name ● String scalar

The ordinance's name.

UpdateOrdinanceInput.status ● ID scalar

The ordinance's status.

UpdateOrdinanceInput.externalCode ● String scalar

The ordinance's external code.

UpdateOrdinanceInput.affectedParty ● String scalar

The ordinance's affected party.

UpdateOrdinanceInput.isPublic ● Boolean scalar

True if the ordinance is public to the organization. If false, do not share this ordinance with other users in this organization without explicitly checking to see if they have access.

UpdateOrdinanceInput.relatedId ● ID scalar

The ordinance's related ordinance.

UpdateOrdinanceInput.signedAt ● Date scalar

Signed date of the ordinance.

UpdateOrdinanceInput.startAt ● Date scalar

Start date of the ordinance.

UpdateOrdinanceInput.dueAt ● Date scalar

Due date of the ordinance.

UpdateOrdinanceInput.completedAt ● Date scalar

Completed date of the ordinance.

UpdateOrdinanceInput.filePath ● String scalar

The ordinance's file path.

UpdateOrdinanceInput.filesPath ● String scalar

The ordinance's files path.

UpdateOrdinanceInput.notes ● String scalar

The ordinance's notes.

UpdateOrdinanceInput.members ● OrdinanceRelatedMembersInput input

The ordinance's members relation.

UpdateOrdinanceInput.projects ● RelatedProjectsInput input

The ordinance's projects relation.

UpdateOrdinanceInput.tasks ● RelatedTasksInput input

The ordinance's tasks relation.

UpdateOrdinanceInput.letters ● RelatedLettersInput input

The ordinance's letters relation.

UpdateOrdinanceInput.tags ● RelatedTagsInput input

The ordinance's tags relation.

Member Of

updateOrdinance mutation