7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
const Category = {
|
|
animals: (parent, args, { animals }) =>
|
|
animals.filter((animal) => animal.category === parent.id),
|
|
};
|
|
|
|
module.exports = { Category };
|