Skip to main content

BusinessRuleFieldDefinitionGroup

Collection of related field definitions organized by domain context for business rule mapping.

Groups field definitions by logical domains (e.g., order, customer, product) to provide organized access to available fields. Supports hierarchical organization with root groups and nested structures for complex data modeling.

type BusinessRuleFieldDefinitionGroup {
id: ID!
name: String!
isRoot: Boolean!
definitions: [BusinessRuleFieldDefinition!]!
}

Fields

BusinessRuleFieldDefinitionGroup.id ● ID! non-null scalar

Unique identifier for this field definition group within the system

BusinessRuleFieldDefinitionGroup.name ● String! non-null scalar

Domain name of the field definition group (e.g., 'order', 'customer', 'product')

BusinessRuleFieldDefinitionGroup.isRoot ● Boolean! non-null scalar

Indicates whether this group represents a top-level domain or a nested sub-group

BusinessRuleFieldDefinitionGroup.definitions ● [BusinessRuleFieldDefinition!]! non-null object

Collection of field definitions available within this domain group for business rule construction

Returned By

businessRuleFieldDefinitions query