INPUT_OBJECT

CreateProjectInput

link GraphQL Schema definition

  • input CreateProjectInput {
  • # Optional client-supplied identifier passed on a mutation input and echoed back
  • # unchanged on its payload, so a client can correlate the response with its
  • # request (Relay convention).
  • clientMutationId: String
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Id of the related account.
  • accountId: ID
  • # Id of the currency exchange rate list applied to this project.
  • currencyExchangeRatesListId: ID
  • # Free-form description of the project.
  • description: String
  • # Planned end date of the project. Must be on or after start_date when both are
  • # set.
  • endDate: Date!
  • # Name of the entity and its default text representation.
  • name: String!
  • # Id of the project owner.
  • ownerId: ID!
  • # Id of the project type.
  • projectTypeId: ID
  • # Sharing model applied on top of the owner/unit visibility (e.g. shared with
  • # selected sales units or selected users).
  • shareMode: ShareModeEnum
  • # Date when the project starts.
  • startDate: Date
  • # Id of the sales unit.
  • unitId: ID
  • customFields: JSONString
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Target revenue of the project, stored in the team space base currency with the
  • # foreign value and currency code preserved alongside.
  • revenueGoal: CurrencyForeignFieldInput
  • # Documents linked to this project.
  • documents: [CreateCloudObjectRelationNoBackrefInput!]
  • # Sales units that have been granted shared access to this project. Editable only
  • # when share_mode allows unit sharing.
  • sharingUnits: [CreateProjectSharingSalesUnitRelationNoProjectBackrefInput!]
  • # Users that have been granted shared access to this project. Editable only when
  • # share_mode allows user sharing.
  • sharingClients: [CreateProjectSharingClientRelationNoProjectBackrefInput!]
  • # Contacts linked to this project, including the primary-contact flag.
  • contactRelations: [CreateProjectContactRelationNoProjectBackrefInput!]
  • # Tag labels applied to this project.
  • tags: [CreateTagRelationNoProjectBackrefInput!]
  • # Saved view profiles this project currently matches.
  • staticProfiles: [CreateProfileRelationNoProjectBackrefInput!]
  • }

link Require by