Files
talk/plugins/talk-plugin-toxic-comments/server/resolvers.js
T
2017-09-27 22:50:45 +07:00

8 lines
169 B
JavaScript

const get = require('lodash/get');
module.exports = {
Comment: {
toxicity: (comment) => get(comment, 'metadata.perspective.SEVERE_TOXICITY.summaryScore'),
}
};