OBJECT

LeadOpptyContactGroupRelationEntity

link GraphQL Schema definition

  • type LeadOpptyContactGroupRelationEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Lead this contact group belongs to. Set when lead_oppty_id resolves to a Lead;
  • # otherwise empty.
  • lead: LeadEntity
  • # Opportunity this contact group belongs to. Set when lead_oppty_id resolves to an
  • # Opportunity; otherwise empty.
  • oppty: OpportunityEntity
  • # 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!
  • # Layout position of the group on the org chart, stored as JSON coordinates.
  • 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
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }