- 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]
- Getting started
- 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 concatenates the values of string fields.
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 increases the value of 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 adds an item to the end of the array.
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 removes items from an array.
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