Response containing an entry or ancestor entry found by entry path.

interface IGetEntryByPathResponse {
    ancestorEntry?: Entry;
    entry?: Entry;
}

Implemented by

Properties

ancestorEntry?: Entry

The closest entry ancestor. This property is set if entry is not found and fallbackToClosestAncestor is set to true.

entry?: Entry

The entry found by path. This property is set if entry is found.