type QueryValueMatcher<T> =
  | {
      eq: T
    }
  | {
      gt: number
    }
  | {
      neq: T
    }
QueryExpressionRecordFromId