pub fn fetch_entries_in_time_range<EntryType: 'static + TryFrom<SerializedBytes, Error = SerializedBytesError>, TY, E>(
    fetchers: &Fetchers,
    link_type_filter: LinkTypeFilter,
    link_type: TY,
    start_time: FetchEntriesTime,
    end_time: FetchEntriesTime,
    base_component: String
) -> Result<Vec<WireRecord<EntryType>>, WasmError>where
    ScopedLinkType: TryFrom<TY, Error = E>,
    TY: Clone,
    WasmError: From<E>,
Expand description

fetches all entries of a certain type between two dates. Calls different sub methods depending on if an hour is suppled.