trilium
    Preparing search index...

    Attribute is an abstract concept which has two real uses - label (key - value pair) and relation (representing named relationship between source and target note)

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    attributeId: string
    blobId?: string
    dateCreated?: string
    dateModified?: string
    isInheritable: boolean
    isProtected?: boolean
    isSynced?: boolean
    name: string
    noteId: string
    position: number
    utcDateCreated: string
    utcDateModified?: string
    value: string

    Accessors

    Methods

    • Returns {
          attributeId: string;
          isDeleted: boolean;
          isInheritable: boolean;
          name: string;
          noteId: string;
          position: number;
          type: AttributeType;
          utcDateModified: undefined | string;
          value: string;
      }

    • Mark the entity as (soft) deleted. It will be completely erased later.

      This is a low-level method, for notes and branches use note.deleteNote() and 'branch.deleteBranch()` instead.

      Parameters

      • deleteId: null | string = null

      Returns void