INPUT_OBJECT

CreateLeadOpptyContactGroupRelationInput

link GraphQL Schema definition

  • input CreateLeadOpptyContactGroupRelationInput {
  • # 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
  • # Display color of the contact group on the org chart, encoded as an integer
  • # packing the RGB components: (red << 16) | (green << 8) | blue.
  • color: Int!
  • # Org-chart layout of the contact group, as a JSON object {"x": , "y": ,
  • # "width": , "height": }.
  • groupPosition: JSONString!
  • # Id of the lead or opportunity the contact group belongs to.
  • leadOpptyId: ID!
  • # Name of the entity and its default text representation.
  • name: String!
  • # Revision when entity was lastly changed.
  • revision: Int
  • }