2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2020-12-28 23:23:01 -08:00
2021-12-03 00:44:16 -08:00
export const folderMessageOperations : INodeProperties [ ] = [
2020-12-28 23:23:01 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-12-28 23:23:01 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'folderMessage' ] ,
2020-12-28 23:23:01 -08:00
} ,
} ,
options : [
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2020-12-28 23:23:01 -08:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many messages in a folder' ,
2022-09-08 08:10:13 -07:00
action : 'Get many folder messages' ,
2020-12-28 23:23:01 -08:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-12-28 23:23:01 -08:00
2021-12-03 00:44:16 -08:00
export const folderMessageFields : INodeProperties [ ] = [
2020-12-28 23:23:01 -08:00
{
displayName : 'Folder ID' ,
name : 'folderId' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'folderMessage' ] ,
operation : [ 'getAll' ] ,
2020-12-28 23:23:01 -08:00
} ,
} ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'folderMessage' ] ,
operation : [ 'getAll' ] ,
2020-12-28 23:23:01 -08:00
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-12-28 23:23:01 -08:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'folderMessage' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2020-12-28 23:23:01 -08:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
default : 100 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-12-28 23:23:01 -08:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'folderMessage' ] ,
operation : [ 'getAll' ] ,
2020-12-28 23:23:01 -08:00
} ,
} ,
options : [
{
displayName : 'Fields' ,
name : 'fields' ,
type : 'string' ,
default : '' ,
description : 'Fields the response will contain. Multiple can be added separated by ,.' ,
} ,
{
displayName : 'Filter' ,
name : 'filter' ,
type : 'string' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Microsoft Graph API OData $filter query. Information about the syntax can be found <a href="https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter">here</a>.' ,
2020-12-28 23:23:01 -08:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;