INPUT_OBJECT

UpdateAccountInput

link GraphQL Schema definition

  • input UpdateAccountInput {
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID!
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • picture: CreateCloudObjectInput
  • # Field whose values are strictly defined with an enumeration of values.
  • accountClass: AccountClassEnum
  • # Relation to single entity instance.
  • accountTypeId: ID
  • # Multi-line text input field.
  • address: String
  • # Simple text input field.
  • city: String
  • # Multi-line text input field.
  • comments: String
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • country: String
  • # Relation to single entity instance.
  • customerTypeId: ID
  • # Email address.
  • email1: String
  • # Email address.
  • email2: String
  • # Email address.
  • email3: String
  • # Email address.
  • email4: String
  • # Email address.
  • email5: String
  • # URL - HTTP address.
  • homePage: String
  • # Relation to single entity instance.
  • industryId: ID
  • # Boolean value.
  • isArchived: Boolean
  • # Name of the entity and its default text representation.
  • name: String
  • # Relation to single entity instance.
  • ownerId: ID
  • # Relation to single entity instance.
  • parentAccountId: ID
  • # Relation to single entity instance.
  • parentAccountRelationTypeId: ID
  • # Phone number.
  • phone1: String
  • # Phone number.
  • phone2: String
  • # Phone number.
  • phone3: String
  • # Phone number.
  • phone4: String
  • # Phone number.
  • phone5: String
  • # Relation to single entity instance.
  • pictureId: ID
  • # Simple text input field.
  • quickParentAccountName: String
  • # Field whose values are strictly defined with an enumeration of values.
  • shareMode: ShareModeEnum
  • # Simple text input field.
  • stateProvince: String
  • # Relation to single entity instance.
  • unitId: ID
  • # Simple text input field.
  • zipCode: String
  • customFields: JSONString
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Relation field where both sides cardinality is one.
  • #
  • # The foreign field of the pair is immutable and read-only. (Recurrence sticks to
  • # same oppty forever.),
  • #
  • # also OpptyRecurrence.oppty column is unique.
  • #
  • # E.g. Oppty.recurrence <-> foreign(OpptyRecurrence.oppty)
  • #
  • socialMedia: UpdateAccountSocialRelationNoIdBackrefInput
  • # Relations to SalesUnits.
  • sharingUnits: [CreateAccountSharingSalesUnitRelationNoAccountBackrefInput!]
  • # Relations to Clients.
  • sharingClients: [CreateAccountSharingClientRelationNoAccountBackrefInput!]
  • # Relations to CloudObjects.
  • documents: [CreateCloudObjectRelationNoBackrefInput!]
  • isUnsubscribed: Boolean
  • # Relations to Tags.
  • tags: [CreateTagRelationNoAccountBackrefInput!]
  • }