UNPKG

@ssb-graphql/settings

Version:

GraphQL types and resolvers for the ssb-settings plugin

13 lines (11 loc) 237 B
module.exports = function GetSettings (sbot) { return function getSettings (id, cb) { sbot.settings.get(id, (err, settings) => { if (err) return cb(err) cb(null, { ...settings, id }) }) } }