Hi,
I want to add in our Cli integration a search field to fetch additional data, which I have added via:
search: {
display: {
label: 'Find Group',
description: 'Search for a group by the id',
},
operation: {
inputFields:
{
key: 'id',
label: 'group ID',
type: 'integer',
required: false,
},
],
perform: (z, bundle) => {
return utils.makeApiRequest({
endpoint: `foo/groups`,
paginated: true
}, z, bundle );
}
}
},
but it results in a search OR create one if none are found.
Is there a way to disable this? The module has indeed a create method, but I really don’t want to use it within the search.