INPUT_OBJECT
UpdateProjectInput
link GraphQL Schema definition
- input UpdateProjectInput {
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Id of the related account.
- : ID
- # Id of the currency exchange rate list applied to this project.
- : ID
- # Free-form description of the project.
- : String
- # Planned end date of the project. Must be on or after start_date when both are
- # set.
- : Date
- # Name of the entity and its default text representation.
- : String
- # Id of the project owner.
- : ID
- # Id of the project type.
- : ID
- # Sharing model applied on top of the owner/unit visibility (e.g. shared with
- # selected sales units or selected users).
- : ShareModeEnum
- # Date when the project starts.
- : Date
- # Id of the sales unit.
- : ID
- : JSONString
- # Revision when entity was lastly changed.
- : Int
- # Target revenue of the project, stored in the team space base currency with the
- # foreign value and currency code preserved alongside.
- : CurrencyForeignFieldInput
- # Documents linked to this project.
- : [CreateCloudObjectRelationNoBackrefInput!]
- # Sales units that have been granted shared access to this project. Editable only
- # when share_mode allows unit sharing.
- : [CreateProjectSharingSalesUnitRelationNoProjectBackrefInput!]
- # Users that have been granted shared access to this project. Editable only when
- # share_mode allows user sharing.
- : [CreateProjectSharingClientRelationNoProjectBackrefInput!]
- # Contacts linked to this project, including the primary-contact flag.
- : [CreateProjectContactRelationNoProjectBackrefInput!]
- # Tag labels applied to this project.
- : [CreateTagRelationNoProjectBackrefInput!]
- # Saved view profiles this project currently matches.
- : [CreateProfileRelationNoProjectBackrefInput!]
- }