We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd3c4aa commit a488396Copy full SHA for a488396
resolvers/taskResolver.js
@@ -204,6 +204,9 @@ module.exports = {
204
item(data, args, context) {
205
return context.data.item.getItem(context, data.item);
206
},
207
+ items(data, args, context) {
208
+ return data.items.map(id => context.data.item.getItem(context, id));
209
+ },
210
maps(data, args, context) {
211
return data.map_ids.map(id => {
212
return context.data.map.get(context, id);
schema.js
@@ -1061,6 +1061,7 @@ type TaskObjectiveItem implements TaskObjective {
1061
maps: [Map]!
1062
optional: Boolean!
1063
item: Item!
1064
+ items: [Item]!
1065
count: Int!
1066
foundInRaid: Boolean!
1067
dogTagLevel: Int
0 commit comments