当下游响应未返回数组项索引时,我需要知道它。假设我的架构看起来像
schema:
type Cart {
items: [Item]
}
type Item {
name: String
index: Int
}
数据来了
{items: [{name: apple}, {name: mango},]}
解析器如下:
Cart: {
items(obj, context, info) {
return obj;
}
}
Item: {
name(obj, context, info) {
return obj.name;
}
index(obj, context, info) {
// how to get it?
}
}
如何在项数组中获取ith index
?
答案 0 :(得分:1)
如果您想为某张卡片中的一张卡片取消多个物品,则
type Cart {
items: [Item]!
}
type Item {
name: String!
index: Int!
}
Query {
cardItems: [Cart]!
}
resolver {
cardItems : () => {
//Perform opration and make result like this to run query properly
return [{ items: [{ name: 'name1', index: 0 }, ...]}]
//Which is array of items contain name and index
}
}
// Query to get result
{
cardItems {
items {
name
index
}
}
}
但是,如果要转到购物车中的特定商品索引,则应获取ID或索引的唯一键并进行进一步查询
Query {
itemById(itemId: String!): Item
}
resolver {
itemById({ itemId }) {
//perform opration and return item with respeact to itemId
return { name: 'string', index: 1}
},
}
//Query to get result
{
itemById(itemId: "1"){
name
index
}
}
基于解析器结果索引或itemId的结果。