Interface FieldDescription

AttributeDescription variant for a direct scalar or object field on the Fact Sheet.

  • type — discriminant: 'field'
  • name — key used to access this value in the response node
  • field — the GraphQL field name on the Fact Sheet (e.g. 'businessCriticality')
  • fieldType — the data model FieldType (e.g. 'SINGLE_SELECT', 'LIFECYCLE')
interface FieldDescription {
    field: string;
    fieldType: FieldType;
    name: string;
    type: "field";
}

Properties

field: string
fieldType: FieldType
name: string
type: "field"

Generated using TypeDoc