将 Typegoose 与 GraphQL 一起使用

Posted

技术标签:

【中文标题】将 Typegoose 与 GraphQL 一起使用【英文标题】:Using Typegoose with GraphQL 【发布时间】:2021-02-09 02:05:45 【问题描述】:

我正在尝试将 typegoose 与 graphql 一起使用。我在另一个对象中有一个嵌套对象列表。我定义的类如下

@ObjectType()
export class ChildClass 
  @prop()
  @Field( nullable: true )
  someField: string;

  @prop()
  @Field( nullable: true )
  anotherField: string;


@ObjectType()
@modelOptions()
export class ParentClass extends Typegoose 
  @prop()
  @Field(() => String)
  someField: string;

  @prop()
  @Field(() => [ChildClass],  nullable: 'itemsAndList' )
  children: ChildClass[];

当我调用以下查询时

query 
  parentClass 
    someField
    children 
      someField
      anotherField
    
  

它总是给我null 给孩子们的someFieldanotherField。但是,如果我使用猫鼬而不是 typegoose,它可以正常工作。 MongoDb 在使用 typegoose 时返回正常。它转换为 graphql 很不稳定。

我在这里错过了什么?

【问题讨论】:

【参考方案1】:

经过一番折腾,终于明白为什么会发生这种情况了。将模型更新为像

  @prop(  type: () => [ChildClass]  )
  @Field(() => [ChildClass],  nullable: 'itemsAndList' )
  children: ChildClass[];

会变魔术。根据documentation

【讨论】:

以上是关于将 Typegoose 与 GraphQL 一起使用的主要内容,如果未能解决你的问题,请参考以下文章

如何使“apollo 服务器”与 graphql schemaObject 一起使用?

如何使 Flutter graphql 订阅与轮渡包一起使用?

Mongodb,Typegoose - 通用存储库模式

将 GraphQL 片段与 Apollo Hooks 一起使用时出错

如何将 Realm 与 Relay/GraphQL 一起使用

如何使用 get 方法将 ajax 与 graphql 一起使用?