async usersQueryAssistSource()

in src/app/HubService.js [50:60]


  async usersQueryAssistSource(args) {
    return this.fetchHub(
      'api/rest/users/queryAssist',
      {
        query: {
          ...args,
          fields: `query,caret,styleRanges${args.omitSuggestions ? '' : ',suggestions'}`
        }
      }
    );
  }