Slack Developer Kit for Node.js
Kind: global class
Searches for messages and files matching a query.
Kind: instance method of [SearchFacet](#SearchFacet)
See: search.all
| Param | Type | Description |
|---|---|---|
| query | ? |
Search query. May contains booleans, etc. |
| [opts] | Object |
|
| opts.sort | ? |
Return matches sorted by either score or timestamp. |
| opts.sort_dir | ? |
Change sort direction to ascending (asc) or descending (desc). |
| opts.highlight | ? |
Pass a value of 1 to enable query highlight markers (see below). |
| [optCb] | function |
Optional callback, if not using promises. |
Searches for files matching a query.
Kind: instance method of [SearchFacet](#SearchFacet)
See: search.files
| Param | Type | Description |
|---|---|---|
| query | ? |
Search query. May contain booleans, etc. |
| [opts] | Object |
|
| opts.sort | ? |
Return matches sorted by either score or timestamp. |
| opts.sort_dir | ? |
Change sort direction to ascending (asc) or descending (desc). |
| opts.highlight | ? |
Pass a value of 1 to enable query highlight markers (see below). |
| [optCb] | function |
Optional callback, if not using promises. |
Searches for messages matching a query.
Kind: instance method of [SearchFacet](#SearchFacet)
See: search.messages
| Param | Type | Description |
|---|---|---|
| query | ? |
Search query. May contains booleans, etc. |
| [opts] | Object |
|
| opts.sort | ? |
Return matches sorted by either score or timestamp. |
| opts.sort_dir | ? |
Change sort direction to ascending (asc) or descending (desc). |
| opts.highlight | ? |
Pass a value of 1 to enable query highlight markers (see below). |
| [optCb] | function |
Optional callback, if not using promises. |