n8n-nodes-appwriten8n
Advanced tools
Comparing version 0.3.3 to 0.3.4
@@ -190,2 +190,105 @@ "use strict"; | ||
}, | ||
{ | ||
displayName: 'Query', | ||
name: 'query', | ||
type: 'options', | ||
default: 'equal', | ||
options: [ | ||
{ | ||
name: 'Between', | ||
value: 'between', | ||
description: 'Returns document if attribute value falls between the two values. The boundary values are inclusive and can be strings or numbers.', | ||
}, | ||
{ | ||
name: 'Cursor After', | ||
value: 'cursor_after', | ||
description: 'Places the cursor after the specified resource ID. Used for pagination.', | ||
}, | ||
{ | ||
name: 'Cursor Before', | ||
value: 'cursor_before', | ||
description: 'Places the cursor before the specified resource ID. Used for pagination.', | ||
}, | ||
{ | ||
name: 'Ends With', | ||
value: 'ends_with', | ||
description: 'Returns documents if a string attributes ends with a substring', | ||
}, | ||
{ | ||
name: 'Equal', | ||
value: 'equal', | ||
description: 'Returns document if attribute is equal to any value in the provided array', | ||
}, | ||
{ | ||
name: 'Greater Than', | ||
value: 'greater_than', | ||
description: 'Returns document if attribute is greater than the provided value', | ||
}, | ||
{ | ||
name: 'Greater Than or Equal', | ||
value: 'greater_than_or_equal', | ||
description: 'Returns document if attribute is greater than or equal to the provided value', | ||
}, | ||
{ | ||
name: 'Is Not Null', | ||
value: 'is_not_null', | ||
description: 'Returns documents where attribute value is not null', | ||
}, | ||
{ | ||
name: 'Is Null', | ||
value: 'is_null', | ||
description: 'Returns documents where attribute value is null', | ||
}, | ||
{ | ||
name: 'Less Than', | ||
value: 'less_than', | ||
description: 'Returns document if attribute is less than the provided value', | ||
}, | ||
{ | ||
name: 'Less Than or Equal', | ||
value: 'less_than_or_equal', | ||
description: 'Returns document if attribute is less than or equal to the provided value', | ||
}, | ||
{ | ||
name: 'Limit', | ||
value: 'limit', | ||
description: 'Limits the number of results returned by the query. Used for pagination. If the limit query is not used, the limit defaults to 25 results.', | ||
}, | ||
{ | ||
name: 'Not Equal', | ||
value: 'not_equal', | ||
description: 'Returns document if attribute is not equal to any value in the provided array', | ||
}, | ||
{ | ||
name: 'Offset', | ||
value: 'offset', | ||
description: 'Offset the results returned by skipping some of the results. Used for pagination.', | ||
}, | ||
{ | ||
name: 'Order Ascending', | ||
value: 'order_ascending', | ||
description: 'Orders results in ascending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order.', | ||
}, | ||
{ | ||
name: 'Order Descending', | ||
value: 'order_descending', | ||
description: 'Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order.', | ||
}, | ||
{ | ||
name: 'Search', | ||
value: 'search', | ||
description: 'Searches string attributes for provided keywords. Requires a Full-text index on queried attributes.', | ||
}, | ||
{ | ||
name: 'Select', | ||
value: 'select', | ||
description: 'Select which attributes should be returned from a document', | ||
}, | ||
{ | ||
name: 'Starts With', | ||
value: 'starts_with', | ||
description: 'Returns documents if a string attributes starts with a substring', | ||
}, | ||
], | ||
}, | ||
], | ||
@@ -192,0 +295,0 @@ }, |
{ | ||
"name": "n8n-nodes-appwriten8n", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"description": "N8N Nodes for Appwrite starting at 1.4.X and up, will be updated.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
{ | ||
"name": "n8n-nodes-appwriten8n", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"description": "N8N Nodes for Appwrite starting at 1.4.X and up, will be updated.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
152920
1286