query-builder/src/query-builder.interface.ts
Value options that are connected to a specific identifier.
Example :{
key: 'animal',
valueOptions: [{
key: 'animal.zebra',
label: 'Zebra'
}, {
key: 'animal.giraffe',
label: 'Giraffe'
}]
}import { IQueryBuilderValueOptions } from '@talenra/components/query-builder';
Properties |
| key |
key:
|
Type : string
|
|
The identifier of the field that is used to connect the identifier with the options. |
| valueOptions |
valueOptions:
|
Type : IQueryBuilderValueOption[]
|
|
Options that are available for the specific identifier. |