Git Product home page Git Product logo

Comments (3)

vkarpov15 avatar vkarpov15 commented on June 23, 2024 1

You're right, this is due to the type: { type: SchemaTypes.String } property. Without type, everything compiles fine. We're investigating

from mongoose.

imranbarbhuiya avatar imranbarbhuiya commented on June 23, 2024 1

You're right, this is due to the type: { type: SchemaTypes.String } property. Without type, everything compiles fine. We're investigating

the issue with nested type is fixed but now all the arrays are DocumentArray so I cant pass a normal array to this type, can't use .includes with normal types

export const UserSchema = new Schema({
	languages: [
		{
			name: SchemaTypes.String,
			spoken: SchemaTypes.Boolean,
		},
	],
	roles: [SchemaTypes.String],
});

export type IUser = InferSchemaType<typeof UserSchema>;

const a: IUser = {
	languages: [
		{
			name: 'English',
			spoken: true,
		},
	],
};

// Type '{ name: string; spoken: true; }' is not assignable to type 'Subdocument<ObjectId> & { name?: string | null | undefined; spoken?: boolean | null | undefined; }'.
//  Type '{ name: string; spoken: true; }' is missing the following properties from type 'Subdocument<ObjectId>': $isSingleNested, ownerDocument, parent, $parent, and 50 more.ts(2322)
// types.d.ts(63, 11): The expected type comes from property '0' which is declared here on type 'DocumentArray<{ name?: string | null | undefined; spoken?: boolean | null | undefined; }>'

a.roles.includes('a');
// Argument of type 'string' is not assignable to parameter of type 'Subdocument<ObjectId> & { get?: {} | null | undefined; set?: {} | null | undefined; prototype?: string | null | undefined; schemaName?: string | null | undefined; cast?: {} | ... 1 more ... | undefined; checkRequired?: {} | ... 1 more ... | undefined; }'.
//  Type 'string' is not assignable to type 'Subdocument<ObjectId>'.ts(2345)

from mongoose.

pavel-luhin avatar pavel-luhin commented on June 23, 2024

Hi @imranbarbhuiya
Have you found any workaround? Mine is to pass object with array directly to create function. Maybe you found something else?

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.