mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 21:04:24 +08:00
Simplify args
This commit is contained in:
@@ -212,7 +212,7 @@ const withModQueueQuery = withQuery(gql`
|
||||
}) {
|
||||
...CoralAdmin_Moderation_CommentConnection
|
||||
}
|
||||
assets: assets(query: {limit: 0}) {
|
||||
assets {
|
||||
id
|
||||
title
|
||||
url
|
||||
|
||||
+3
-4
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user