All the system objects extend the base object.

Type parameters

Hierarchy

Properties

Readonly data

data: Based<Partial<T>>

Values of object’s fields.

Readonly fields

fields: Readonly<object>

Description of the object’s fields.

Methods

normalize

  • normalize(): void
  • Delete duplicate data in arrays.

    The method deletes duplicates in fields that store arrays of links to system objects (users, files, app items, or documents). For example, you can call this method after bulk editing data within an object.

    const  app1 = await Context.data.app1.fetch();
    const app2 = await Context.data.app2 .fetch(); 
    app1.data.executors.push(app2.data.executors); 
    app1.normalize();  
    // Now we need to go over the elements in the new array 
    app1.data.executors .forEach( ... ); 
    

    Returns void