Skip to main content

query_changes

Function query_changes 

Source
pub fn query_changes(
    conn: &Connection,
    input: &ChangesInput,
    config: Option<&TalonConfig>,
) -> ChangesResponse
Expand 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.