В приведенном ниже примере я пытаюсь создать Существо в своей базе данных, у каждого существа есть много атрибутов, поэтому я создал тип CreatureAttribute со многими различными обязательными полями 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
}
}
Спасибо за ваши ответы заранее:)