pub fn query_changes(
conn: &Connection,
input: &ChangesInput,
config: Option<&TalonConfig>,
) -> ChangesResponseExpand description
Returns notes that were added, modified, or deleted since input.since.
Classification:
- added: first
'index'event for a path falls within the window. - modified: an
'index'event within the window but an earlier'index'event exists before the window. - deleted: a
'delete'event within the window.
Returns empty lists when since cannot be parsed.