Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

common/array

This is generated documentation for the array component.

Operations

includes

Operation Configuration

Name Type Description
array object[]

Inputs

Name Type Description
value object

Outputs

Name Type Description
result bool

Usage

Given the following configuration:

Operation configuration as op-config.json:

{ 
  "array": "XXX"
}
$ wick invoke common/array:0.1.0 includes --op-with=@op-config.json -- --value="XXX"

Or with inline configuration:

$ wick invoke common/array:0.1.0 includes \
  --op-with='{ "array":"XXX" }' \
  -- --value="XXX"

includes_glob

Operation Configuration

Name Type Description
array object[]

Inputs

Name Type Description
value object

Outputs

Name Type Description
result bool

Usage

Given the following configuration:

Operation configuration as op-config.json:

{ 
  "array": "XXX"
}
$ wick invoke common/array:0.1.0 includes_glob --op-with=@op-config.json -- --value="XXX"

Or with inline configuration:

$ wick invoke common/array:0.1.0 includes_glob \
  --op-with='{ "array":"XXX" }' \
  -- --value="XXX"