Files

9 lines
167 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.profile) {
return parent.profile;
} else {
return parent.getProfile();
}
};