the value of the relation's PK to filter by
an AA, mapping column name to the new value to be set for the column
optionally send this query async
Connection c; // en established connection struct User { @PK int id; int x; string y } c.update!User(1, [ "x": Value(2), "y": Value("Hello there")]);
Similar to above update, but instead of acceptign a filter and and update string, always filters by the PK and updates with absolute values from the updates AA.