Files
talk/plugins/talk-plugin-toxic-comments/server/resolvers.js
T
2018-01-11 20:00:34 -07:00

9 lines
174 B
JavaScript

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