import { ReactionProperties, } from '../../Interfaces'; export const reactionGetAllDescription: ReactionProperties = [ { displayName: 'Post ID', name: 'postId', type: 'string', default: '', required: true, displayOptions: { show: { resource: [ 'reaction', ], operation: [ 'getAll', ], }, }, description: 'One or more (comma-separated) posts to retrieve reactions from.', }, { displayName: 'Return All', name: 'returnAll', type: 'boolean', displayOptions: { show: { operation: [ 'getAll', ], resource: [ 'reaction', ], }, }, default: true, description: 'If all results should be returned or only up to a given limit.', }, { displayName: 'Limit', name: 'limit', type: 'number', displayOptions: { show: { operation: [ 'getAll', ], resource: [ 'reaction', ], returnAll: [ false, ], }, }, typeOptions: { minValue: 1, maxValue: 100, }, default: 100, description: 'How many results to return.', }, ];