-
Notifications
You must be signed in to change notification settings - Fork 59
idatastore
ralphhanna edited this page Dec 18, 2023
·
3 revisions
bpmn-server / IDataStore
• db: any
• dbConfiguration: any
• locker: any
• logger: any
▸ deleteInstances(query?): Promise<void>
| Name | Type |
|---|---|
query? |
any |
Promise<void>
▸ findInstance(query, options): Promise<IInstanceData>
| Name | Type |
|---|---|
query |
any |
options |
any |
Promise<IInstanceData>
▸ findInstances(query, option): Promise<IInstanceData[]>
| Name | Type |
|---|---|
query |
any |
option |
"full" | "summary"
|
Promise<IInstanceData[]>
▸ findItem(query): Promise<IItemData>
| Name | Type |
|---|---|
query |
any |
Promise<IItemData>
▸ findItems(query): Promise<IItemData[]>
| Name | Type |
|---|---|
query |
any |
Promise<IItemData[]>
▸ install(): any
any
▸ loadInstance(instanceId, options): Promise<{ instance: any ; items: any[] }>
| Name | Type |
|---|---|
instanceId |
any |
options |
any |
Promise<{ instance: any ; items: any[] }>
▸ save(instance, options): Promise<void>
| Name | Type |
|---|---|
instance |
any |
options |
any |
Promise<void>