Files
talk/plugins/talk-plugin-rich-text/server/resolvers.js
T

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),
},
};