You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TS2322: Type '{ $meta: string; }' is not assignable to type 'AnyExpression'.
Object literal may only specify known properties, and '$meta' does not exist in type 'any[] | NativeDate | ArrayElemAt | First | Last | Reduce | ConcatArrays | Filter | Map | ObjectToArray | ... 134 more ... | Switch'.
Expected Behavior
No response
The text was updated successfully, but these errors were encountered:
Prerequisites
Mongoose version
6.4.4
Node.js version
17.7.1
MongoDB server version
5.0.9
Description
Can't compile with Typescript
Steps to Reproduce
aggregate.addFields({
score: {
$meta: "textScore"
}
})
gives the following typescript error:
TS2322: Type '{ $meta: string; }' is not assignable to type 'AnyExpression'.
Object literal may only specify known properties, and '$meta' does not exist in type 'any[] | NativeDate | ArrayElemAt | First | Last | Reduce | ConcatArrays | Filter | Map | ObjectToArray | ... 134 more ... | Switch'.
Expected Behavior
No response
The text was updated successfully, but these errors were encountered: