Sorting
Emulation
import type { Agent } from '@forestadmin/forest-cloud';
import { Schema } from '../typings';
export default function customizeAgent(agent: Agent<Schema>) {
agent.customizeCollection('users', (collection) => {
// Insert the code snippet here.
});
}collection.emulateFieldSorting('fullName');Overriding sorting
Last updated