Files: b24a8c824494555ff39be898c3fde5541e7e8a92 / tmpl / docs / advanced / messages-by-type.md
462 bytesRaw
Messages by type
Sometimes it's helpful to get all messages of a certain type. For this, you can use 'messagesByType':
var pull = require('pull-stream')
pull(
sbot.messagesByType({ type: 'post' }),
pull.collect(function (err, msgs) { ... })
)
sbot logt --type post
The ordering in messagesByType
will be the same as the ordering in createLogStream
.
Built with git-ssb-web