Files
talk/plugins/talk-plugin-rich-text/server/resolvers.js
T
2018-02-23 14:02:44 -07:00

9 lines
193 B
JavaScript

const { get } = require('lodash');
module.exports = {
Comment: {
// Get the richTextBody, or send null.
richTextBody: comment => get(comment, 'metadata.richTextBody', null),
},
};