update: update existing objectUpdates existing object with given fields.
Object data to update fields in, the original object will be updated. Reference unsafe function. Mutations to apply. Can be used to increase counters or set custom fields. Will be set before any of the selected fields. create: deep-copy & update objectMakes a deep-copy of the given object, builds a new object filled with the given fields or mutations. This function has performance impact on wide-spread use.
Object data to merge into this object. These fields will be overwritten with the fields given in this action. Mutations to apply into this object. These fields will be overwritten with the fields given in this action. querystring: stringifyThe substring used to delimit key and value pairs in the query string.
Default:
&
The substring used to delimit keys and values in the query string.
Default:
=
object: switchReturns a object based of the given expression.
The expression to evaluate. The default statement to be executed. Returns the object matching the expression. Returns true in case a match was found. edifact: generate ekt objectGenerates an EKT object for the edifact EKT formatter
True if this is a test message The date to be used
Default:
Now
Receiver name (or buyer number) Unique ID for this order (most likely the order guid) The code for the flower auction Array of product lines (TIP: Use "EKT Line" object type in a concat) edifact: ekt lineGenerates a line object for in the EKT Object
The line date to be used
Default:
Now
Single Transaction Sequence Number Number of the clock where the transaction was closed Flower Auction Sequence Number Order number on the side of the seller Order number on the side of the buyer How much value in each unit Price in tenth of cents (1 euro = 1000) Packaging code according to VBN code list 901 Can contain objects with { code: S01, value: xxx } The auction number identifying a purchaser The auction number identifying a seat create: shallow-copy objectBuilds a new object from the given object, holding deep references (e.g. deep.key.field
).
Object to build shallow-copy from. create: deep-copy objectBuilds a new object from the given object, removing deep references. This function has performance impact on wide-spread use.
Object to build deep-copy from. Object: parse xmlParses an XML string into an object with XML attributed data
Transforms the keys to lowercase
Default:
false
Strips the xml namespace prefix from the keys
Default:
false
Parses integer-like strings and float-like strings as floats
Default:
false
Parses boolean-like strings to booleans
Default:
false
get: get fieldsGets the selected fields from the given object.
Object to select the selected fields from. geo: find nearest from given pointObject{ latitude: 52.518611, longitude: 13.408056 } Array[Object{ latitude: 52.518611, longitude: 13.408056 }, Object{ latitude: 53.518611, longitude: 14.408056 }] references: useUse the object which was previously defined by a define reference
references: defineStore this object as reference, which can later be used by "use reference"