type QueryExpression<R extends object> = {
  [k in keyof R & string]?: QueryValueMatcher<R[k]>
}
MigrationResultQueryValueMatcher