Simplify args

This commit is contained in:
Chi Vinh Le
2017-06-19 20:33:34 +07:00
parent 77fddba841
commit 853c1e407e
2 changed files with 4 additions and 5 deletions
@@ -212,7 +212,7 @@ const withModQueueQuery = withQuery(gql`
}) {
...CoralAdmin_Moderation_CommentConnection
}
assets: assets(query: {limit: 0}) {
assets {
id
title
url
+3 -4
View File
@@ -104,13 +104,12 @@ module.exports = class AssetsService {
}
/**
* Finds assets matching keywords on the model. If `value` is an empty string,
* then it will not even perform a text search query.
* Finds assets matching keywords on the model.
* @param {String} value string to search by.
* @return {Promise}
*/
static search({value = '', skip = null, limit = null}) {
if (value.length === 0) {
static search({value, skip, limit} = {}) {
if (!value) {
return AssetsService.all(skip, limit);
} else {
return AssetModel