Files

9 lines
161 B
JavaScript
Raw Permalink Normal View History

2022-04-12 08:57:07 -04:00
"use strict";
module.exports = (parent, args, context, info) => {
if (parent.image) {
return parent.image;
} else {
return parent.getImage();
}
};