OBJECT

SolutionEntityNode

The grouped "Entity Settings" node: custom fields, custom entity and sales processes of one entity.

link GraphQL Schema definition

  • type SolutionEntityNode implements SolutionNodeInterface {
  • # Unique identifier of this node within the canvas.
  • id: ID!
  • # Node position on the canvas.
  • position: Position!
  • # Node size in pixels, set by resizing the node on the canvas (PLW-40154). Null
  • # means the default size.
  • size: Size
  • # Group this node belongs to, if any.
  • groupId: ID
  • # Custom name for the node, if the user has set one.
  • name: String
  • # Whether the node was added manually or by the auto-add scan engine.
  • origin: SolutionNodeOrigin!
  • # Entity this settings node represents.
  • entityName: EntityNameEnum!
  • # API name of the custom entity, when the entity is a custom entity.
  • entityApiName: String
  • # Referenced custom fields, each with the canvas nodes using it.
  • fieldIds: [SolutionEntityFieldRef!]!
  • # Referenced lead process ids.
  • leadProcessIds: [ID!]!
  • # Referenced pipeline ids.
  • pipelineIds: [ID!]!
  • # Referenced quote process ids.
  • quoteProcessIds: [ID!]!
  • }

link Require by

This element is not required by anyone