CreateOrdinanceInput
Provides the fields and values to use when creating an ordinance.
input CreateOrdinanceInput {
parentId: ID
name: String
status: ID
externalCode: String
affectedParty: String
isPublic: Boolean
relatedId: ID
signedAt: Date
startAt: Date
dueAt: Date
completedAt: Date
typeId: ID
filePath: String
filesPath: String
description: String
notes: String @deprecated
members: OrdinanceRelatedMembersInput
projects: RelatedProjectsInput
tasks: RelatedTasksInput
letters: RelatedLettersInput
tags: RelatedTagsInput
copyRelations: CopyRelationsInput
}
Fields
CreateOrdinanceInput.parentId ● ID scalar
The ordinance's parent ordinance.
CreateOrdinanceInput.name ● String scalar
The ordinance's name.
CreateOrdinanceInput.status ● ID scalar
The ordinance's status.
CreateOrdinanceInput.externalCode ● String scalar
The ordinance's external code.
CreateOrdinanceInput.affectedParty ● String scalar
The ordinance's affected party.
CreateOrdinanceInput.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.
CreateOrdinanceInput.relatedId ● ID scalar
The ordinance's related ordinance.
CreateOrdinanceInput.signedAt ● Date scalar
Signed date of the ordinance.
CreateOrdinanceInput.startAt ● Date scalar
Start date of the ordinance.
CreateOrdinanceInput.dueAt ● Date scalar
Due date of the ordinance.
CreateOrdinanceInput.completedAt ● Date scalar
Completed date of the ordinance.
CreateOrdinanceInput.typeId ● ID scalar
The ordinance's type.
CreateOrdinanceInput.filePath ● String scalar
The ordinance's file path.
CreateOrdinanceInput.filesPath ● String scalar
The ordinance's files path.
CreateOrdinanceInput.description ● String scalar
The ordinance's description.
CreateOrdinanceInput.notes ● String deprecated scalar
Use description instead
The ordinance's notes.
CreateOrdinanceInput.members ● OrdinanceRelatedMembersInput input
The ordinance's members relation.
CreateOrdinanceInput.projects ● RelatedProjectsInput input
The ordinance's projects relation.
CreateOrdinanceInput.tasks ● RelatedTasksInput input
The ordinance's tasks relation.
CreateOrdinanceInput.letters ● RelatedLettersInput input
The ordinance's letters relation.
CreateOrdinanceInput.tags ● RelatedTagsInput input
The ordinance's tags relation.
CreateOrdinanceInput.copyRelations ● CopyRelationsInput input
The relations that should be copied from another entity.
Member Of
createOrdinance mutation