Skip to main content

BusinessRuleDecisionTableInputOutput

Definition of a decisionTable's input or output column

type BusinessRuleDecisionTableInputOutput {
id: ID!
name: String!
field: String!
type: String!
}

Fields

BusinessRuleDecisionTableInputOutput.id ● ID! non-null scalar

The generated ID for this input or output column

BusinessRuleDecisionTableInputOutput.name ● String! non-null scalar

The name for the input or output column

BusinessRuleDecisionTableInputOutput.field ● String! non-null scalar

The field of the input or output column. In case of inputs this is the full path of from the root of the input payload of the rule. In case of an output column it's the fieldname you want to output after the rule has been executed. Output fields can be organized by using the dot notation. For example:

  • input: "input.name"
  • output: "output.name.firstname"
  • output: "output.name.lastname"

BusinessRuleDecisionTableInputOutput.type ● String! non-null scalar

The type of the input or output column, currently only "expression" is used.

Member Of

BusinessRuleDecisionTableContent object