Git Product home page Git Product logo

Comments (4)

david-loe avatar david-loe commented on May 24, 2024

Error comes from v8.2.3.
v8.2.2 doesn't had this issue.

from mongoose.

david-loe avatar david-loe commented on May 24, 2024

related to #14462

from mongoose.

vkarpov15 avatar vkarpov15 commented on May 24, 2024

Looks like OP's script fails to compile with TypeScript 5.4.3:

$ ./node_modules/.bin/tsc --strict gh-14459.ts 
gh-14459.ts:4:23 - error TS2769: No overload matches this call.
  Overload 1 of 5, '(filter: FilterQuery<ModelType>, projection?: ProjectionType<ModelType> | null | undefined, options?: QueryOptions<ModelType> | null | undefined): Query<...>', gave the following error.
    Argument of type '{ _id: string | Types.ObjectId; }' is not assignable to parameter of type 'FilterQuery<ModelType>'.

I think this is just a limitation of TypeScript, because { _id: never } does satisfy extends {_id: Types.ObjectId | string}. For example, the following doesn't cause any errors with using { _id: never }:

import { Model, Types, model, Schema } from "mongoose";

function findById<ModelType extends {_id: Types.ObjectId | string}>(model: Model<ModelType>, _id: Types.ObjectId | string){
    return model.find({_id: _id})
}

type ModelType = { _id: never };
const TestModel = model<ModelType>('test', new Schema());

findById<ModelType>(TestModel, 'foo');

We will take a quick look to see if there's some way we can work around this weird never case

from mongoose.

vkarpov15 avatar vkarpov15 commented on May 24, 2024

I took a look but there's nothing we can do other than 1) make FilterQuery<T> = any, or 2) require as FilterQuery in OP's case as follows:

import { Model, Types, model, Schema, FilterQuery } from "mongoose";

function findById<ModelType extends {_id: Types.ObjectId | string}>(model: Model<ModelType>, _id: Types.ObjectId | string){
    return model.find({_id: _id} as FilterQuery<ModelType>);
}

This is suboptimal, but unfortunately a limitation of TypeScript. From this SO answer: "Never assign a concrete type to a generic type parameter, consider it as read-only!". That includes calling a function with arguments that rely on the generic type parameter.

Even if we make FilterQuery<T> = T, we get the following error '{ _id: string | Types.ObjectId; }' is assignable to the constraint of type 'ModelType', but 'ModelType' could be instantiated with a different subtype of constraint '{ _id: string | ObjectId; }'

Given that { _id: never } extends {_id: Types.ObjectId | string}, the TypeScript limitation makes sense, just quirky language design.

from mongoose.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.