gpt4 book ai didi

laravel-lighthouse - 如何在 Laravel Lighthouse 中插入多个相同突变的数据?

转载 作者:行者123 更新时间:2023-12-04 10:55:58 30 4
gpt4 key购买 nike

我可以在同一个突变上插入多个吗?

我想知道这是否存在。

这是我的架构

type Test {
id: ID
name: String
msg: String
}

input testInput {
name: String
msg: String
}

type Mutation {
createTest(input: [testInput]): [Test] @create
}

这是我的突变查询
mutation{
createTest(input: [
{id:1, name: "test", msg:"hahaha",},
{id:2, name: "test2", msg:"hahahaa" }
]) {
id
name
msg
}
}

最佳答案

您可以使用自定义突变:

php artisan lighthouse:mutation CreateTest

如果你想要一些可重用的东西,你可能想要实现一个自定义字段解析器指令。查看 @create 的执行情况关于如何做到这一点的想法。

关于laravel-lighthouse - 如何在 Laravel Lighthouse 中插入多个相同突变的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59190448/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com