# Read implementation

{% hint style="success" %}
This is the official documentation of the `@forestadmin/agent` Node.js agent.
{% endhint %}

Developing your query translation layer is much easier when you can preview your work and have intermediary deliverables.

Emulation comes to the rescue: all features that need to be implemented when making a translating data source can be emulated inside your Node.js, at the cost of performance.

This enables you to be up and running in minutes and then optimize your code as you go.

```javascript
const { BaseCollection } = require('@forestadmin/datasource-toolkit');
const axios = require('axios');

/**
 * This collection will have terrible performance, but is perfect to test that the
 * structure declaration is well done.
 */
class MyCollection extends BaseCollection {
  // [... Declare structure and capabilities]

  async list(caller, filter, projection) {
    // Fetch all records on all requests (this is _very_ inefficient)
    const response = await axios.get('https://my-api/my-collection');
    const result = response.data.items;

    // Use "in-process emulation" for everything else.
    if (filter.conditionTree)
      result = filter.conditionTree.apply(result, this, caller.timezone);
    if (filter.sort) result = filter.sort.apply(result);
    if (filter.page) result = filter.page.apply(result);
    if (filter.segment)
      throw new Error('This collection does not implements native segments');
    if (filter.search) throw new Error('This collection is not natively searchable');

    return projection.apply(result);
  }

  async aggregate(caller, filter, aggregation, limit) {
    // Fetch all records which should be aggregated
    const records = await this.list(caller, filter, aggregation.projection);

    // Use "in-process emulation" to aggregate the results
    return aggregation.apply(records, caller.timezone, limit);
  }
}
```

## Tips

### Count queries

The `aggregate` method is used by Forest Admin both to count records and to extract the data which is needed to generate charts.

If the API/Database you are targeting has an efficient API that is made for counting records, you may want to handle this case first.

```javascript
const { BaseCollection } = require('@forestadmin/datasource-toolkit');
const axios = require('axios');

 class MyCollection extends BaseCollection {
  // [... Declare structure, capabilities and list method]

  async aggregate(caller, filter, aggregation, limit) {
    const { operation, fields, groups } = aggregation;

    if (operation === 'Count' && groups.length === 0 && !field) {
      return [{ value: await this.count(caller, filter) }];
    }

    // [... handle the general case]
  }

  async count(caller, filter) {
    const response = await axios.get(
      `https://my-api/my-collection/count`,
      { params: { filter: this._translateFilter(caller, filter) } }
    );

    return response.data.count;
  }

  private _translateFilter(caller, filter) {
    // [... translate filter]
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.forestadmin.com/developer-guide-agents-nodejs/data-sources/custom/translation/read-only.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
