We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e110915 commit 2fd1c23Copy full SHA for 2fd1c23
specification/ingest/_types/Processors.ts
@@ -333,9 +333,13 @@ export class AppendProcessor extends ProcessorBase {
333
*/
334
field: Field
335
/**
336
- * The value to be appended. Supports template snippets.
+ * The value to be appended. Supports template snippets. May specify only one of `value` or `copy_from`.
337
338
- value: UserDefinedValue | UserDefinedValue[]
+ value?: UserDefinedValue | UserDefinedValue[]
339
+ /**
340
+ * The source field to be append. Cannot set `value` simultaneously.
341
+ */
342
+ copy_from?: Field
343
344
* If `false`, the processor does not append values already present in the field.
345
* @server_default true
0 commit comments