Actions199
- Collections Actions
- Forms Actions
- Actions Capabilities Actions
- Activities Actions
- Attachments Actions
- Budgets Actions
- Categories Actions
- Custom Actions Actions
- Custom Options Actions
- Documents Actions
- File Links Actions
- View File Link
- Delete File Link
- Open File Link
- Download File Link
- List Project Storages
- Get Project Storage
- Open Project Storage
- Create Storage
- Get Storage
- Update Storage
- Delete Storage
- Get Storage Files
- Prepare Storage File Upload
- Create Storage Folder
- Create Storage Oauth Credentials
- Open Storage
- Create Work Package File Link
- List Work Package File Links
- Grids Actions
- Groups Actions
- Help Texts Actions
- Memberships Actions
- Query Filter Instance Schema Actions
- News Actions
- Notifications Actions
- O Auth 2 Actions
- Posts Actions
- Principals Actions
- Priorities Actions
- Query Columns Actions
- Query Filters Actions
- Query Operators Actions
- Query Sort Bys Actions
- Relations Actions
- Previewing Actions
- Revisions Actions
- Roles Actions
- Time Entries Actions
- Time Entry Activities Actions
- Types Actions
- User Preferences Actions
- Wiki Pages Actions
- Work Schedule Actions
- Meetings Actions
- Values Property Actions
- Projects Actions
- Queries Actions
- Users Actions
- Statuses Actions
- Versions Actions
- Work Packages Actions
- Get Project Work Package Collection
- Create Project Work Package
- List Work Package File Links
- Form Create Work Package In Project
- Project Available Assignees
- List Work Packages
- Create Work Package
- Form Create Work Package
- List Work Package Schemas
- View Work Package Schema
- Delete Work Package
- View Work Package
- Update Work Package
- List Work Package Activities
- Comment Work Package
- Work Package Available Assignees
- Available Projects For Work Package
- List Available Relation Candidates
- Available Watchers
- Create Work Package File Link
- Form Edit Work Package
- Revisions
- Reminders
- List Watchers
- Add Watcher
- Remove Watcher
- Views Actions
Overview
This node allows updating a specific query form in the "Queries" resource of an external system (likely OpenProject, based on context). It is useful when you want to programmatically modify the properties of an existing query, such as changing its name. For example, you might use this node to rename saved queries dynamically based on workflow conditions or user input.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the query to update. This is a required numeric value. |
| Name | The new name for the query. This is a string value representing the updated query name. |
Output
The node outputs JSON data representing the updated query object returned from the API after the update operation. This typically includes the query's current state with all its properties reflecting the changes made. There is no indication that binary data is output by this node.
Dependencies
- Requires an API key credential to authenticate requests to the external service.
- Needs the base URL of the API endpoint configured in the credentials.
- Depends on the external API supporting query update operations via HTTP PATCH or PUT methods (implied by routing configuration).
Troubleshooting
- Missing or invalid Id: Since the Id property is required, omitting it or providing an invalid number will cause errors. Ensure the Id corresponds to an existing query.
- API authentication errors: If the API key or base URL is incorrect or missing, the node will fail to connect. Verify credential settings.
- Invalid name format: Providing an empty or malformed name might be rejected by the API. Validate input before execution.
- Network issues: Connectivity problems can cause timeouts or failures; check network access to the API endpoint.
Links and References
- OpenProject API Documentation (assumed relevant based on naming)
- n8n documentation on creating custom nodes