繁体   English   中英

在GraphQL突变中为字段分配类型

[英]Assigning a Type to a field in GraphQL Mutation

在下面的示例中,我尝试在数据库中创建一个Creature,每个生物都具有许多属性,因此我创建了一个CreatureAttribute Type,其中包含许多不同的必需String和Int字段。 如何将该类型附加到生物类型突变?

mutation{
  createCreature(data: {
    creature_name: "Drake"
    creature_type: "Dragon"
    creature_size: "Huge"
    description: "description Text..."
    habitat: "habitat text..."
    combat: "combat text..."
    additional_info: "additional info text..."
    attributes: ********this is where I would like to bring in my CreatureAttributes Type********

    )
    {
    creature_name
    creature_type
    description
    habitat
    combat
    additional_info
    attributes

  }
}

预先感谢您的回答:)

根据我的理解,您想创建一个“生物具有属性”关系。 因此属性应接受数组,如以下示例所示。

type Creature { 
    id: ID! @unique 
    creature_name: String! 
    creature_type: String! 
    creature_size: String! 
    description: String! 
    habitat: String! 
    combat: String! 
    additional_info: String! 
    attributes: [CreatureAttributes]!
} 

type CreatureAttributes { 
    strength: Int! 
    health: Int! 
    stamina: Int! 
    mana: Int! 
    reaction: Int! 
...}

参考-https: //graphql.org/learn/schema/#object-types-and-fields

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM