- Home [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
- Manage types
- Global context and isolation
- Manage apps
- Batch actions with app items
- Manage external services
- Scripts in widgets
- Web components
- Access permissions
- Getting started with processes
- Getting started with signatures
- Getting started with file previews
- Getting started with the organizational chart
- Getting started with users and groups
-
Getting started with the
Table data type - Dynamic calculation of event type
- Use cases
-
API
- Object types
- Data types
- Global constants
-
Work with apps
- ApplicationBatchDeleteBuilder
- ApplicationBatchSaveBuilder
- ApplicationBatchSaver
- ApplicationBatchUpdateBuilder
- ApplicationBatchUpdater
- ApplicationBatcher
- ApplicationFieldOperand
- BaseFieldOperand
- BaseGlobalFilters
- ComparableFieldOperand
- ContextOperand
- DirectoriesSearch
- DocflowSettings
- FieldArrayOperand
- FieldOperand
- FilesSearch
- FolderSettings
- GlobalFilters
- GlobalFiltersWithWhere
- LineApplicationFieldOperand
- MailMessageSearch
- NomenclatureRegistrationSettings
- OrganisationStructureSearch
- PhoneFieldOperand
- ProcessInstanceSearch
- ProcessInstanceTaskSearch
- RefItemFieldOperand
- RegistrationSettings
- ReminderSearch
- ReplacementSearch
- ReportSearch
- ResetSettings
- Search
- SerialData
- SerialSettings
- SignatureSettings
- StatusHistorySearch
- StringFieldOperand
- TDocTemplate
- TFolder
- TNomenclature
- TNomenclatureDirectory
- TSettings
- UpdateOperations
- UserGroupSearch
- UserSearch
- Web requests
- Access permissions
- Document flow
- Live Chats
- “Code” widget
- Signatures
- Business calendars
- Integration with IP telephony
- Integration with email marketing services
Object with operations available for batch update
Hierarchy
Methods
concat
The method declares the operation of concatenation for a string field.
const rows = await Application.batch() .update() . set('str', (f, op) => op.concat('_', f.str, '_')) .all();
Parameters
Rest ...args: (TString | UpdateFieldOperand<TString>)[]
Returns UpdateConcatOperation
inc
The method declares the operation of incrementing a number field.
const rows = await Application.batch() .update() . set('number', (f, op) => op.inc(f.number, 10)) .all();
Parameters
field: UpdateFieldOperand<TFloat>
value: TFloat
Returns UpdateIncOperation
push
The method declares the operation of adding an app item at the end of an array field.
const rows = await Application.batch() .update() . set('users', (f, op) => op.push(user)) .all();
Type parameters
T: Type
Parameters
Rest ...items: T[]
Returns UpdateArrayOperation<T>
remove
The method declates the operation of deletion app items from an array field.
const rows = await Application.batch() .update() . set('users', (f, op) => op.remove(user)) .all();
Type parameters
T: Type
Parameters
Rest ...items: T[]
Returns UpdateArrayOperation<T>
Methods