Skip to main content

AttributeResult

The AttributeResult is an entity that gets returned when a search is done on attributes from a Class' perspective. The AttributeResult has 3 fields,

  • attributeDescription: The AttributeDescription Entity
  • attribute: The Entity that link the value to the AttributeDescription Entity and the Class. This field can be null. In that case the Class does not have an AttributeValue set on it.
  • value: The AttributeValue, either from the Attribute on the Class, or from the AttributeDescription when it's an inherited defaultValue.
type AttributeResult {
attribute: Attribute
attributeDescription: AttributeDescription!
value: AttributeValue!
}

Fields

AttributeResult.attribute ● Attribute interface

The Attribute Entity that link the value to the AttributeDescription Entity and the Class. This field can be null. In that case the Class does not have an AttributeValue set on

AttributeResult.attributeDescription ● AttributeDescription! non-null object

The Attribute Description

AttributeResult.value ● AttributeValue! non-null interface

The Attribute Value, either from the Attribute on the Class, or from the AttributeDescription when it's an inherited defaultValue.

Member Of

AttributeResultResponse object