mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 09:46:58 +01:00
Add text search support
This commit is contained in:
parent
361c21ba1c
commit
65c4c43f23
@ -8,6 +8,7 @@ export default class Connection {
|
||||
}
|
||||
|
||||
getApiUrls(endpoints) {
|
||||
// TODO: Use camel case
|
||||
return {
|
||||
'blocks': this.path + 'blocks',
|
||||
'blocks_detail': this.path + 'blocks/%(blockId)s',
|
||||
@ -15,6 +16,7 @@ export default class Connection {
|
||||
'statuses': this.path + 'statuses',
|
||||
'transactions': this.path + 'transactions',
|
||||
'transactions_detail': this.path + 'transactions/%(txId)s',
|
||||
'search_assets': this.path + 'assets',
|
||||
'votes': this.path + 'votes'
|
||||
}[endpoints];
|
||||
}
|
||||
@ -155,4 +157,18 @@ export default class Connection {
|
||||
jsonBody: transaction
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
*
|
||||
* @param transaction
|
||||
*/
|
||||
searchAssets(query) {
|
||||
return this.req(this.getApiUrls('search_assets'), {
|
||||
query: {
|
||||
text_search: query
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user