Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this field in a model but doesn't work

@Field(type => [],{ nullable: true })
product: string[];

I don't know what I miss.

question from:https://stackoverflow.com/questions/65945435/nestjs-graphql-i-need-to-create-a-string-array-field

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
391 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to add the GraphQL type String. Therefore change [] to [String], an array of strings. You might also want to set product optional (with ?) since it is nullable.

@Field(type => [String], { nullable: true })
product?: string[];

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...