如何从 graphql 查询中删除重复项目?
How to deduplicate item from graphql query?
例如我有一个数组 return as
[
{
value: "v",
time: "t"
},{
value: "v",
time: "t"
}, {
value: "v-other",
time: "t-other"
}
]
我希望只给我
[
{
value: "v",
time: "t"
}, {
value: "v-other",
time: "t-other"
}
]
如何进行正确的查询?
根据@ReganKarlewicz 的评论分享,GraphQL 不应被视为一种数据库查询语言,我们应该使用其他工具,MySQL 或 Node 函数来对查询结果进行去重。
例如我有一个数组 return as
[
{
value: "v",
time: "t"
},{
value: "v",
time: "t"
}, {
value: "v-other",
time: "t-other"
}
]
我希望只给我
[
{
value: "v",
time: "t"
}, {
value: "v-other",
time: "t-other"
}
]
如何进行正确的查询?
根据@ReganKarlewicz 的评论分享,GraphQL 不应被视为一种数据库查询语言,我们应该使用其他工具,MySQL 或 Node 函数来对查询结果进行去重。