get_property_dependencies
Analyze property dependencies and visibility rules in n8n nodes. Test how configurations affect field visibility to optimize workflow automation.
Instructions
Shows property dependencies and visibility rules. Example: sendBody=true reveals body fields. Test visibility with optional config.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | No | Optional partial configuration to check visibility impact | |
nodeType | Yes | The node type to analyze (e.g., "nodes-base.httpRequest") |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Optional partial configuration to check visibility impact",
"type": "object"
},
"nodeType": {
"description": "The node type to analyze (e.g., \"nodes-base.httpRequest\")",
"type": "string"
}
},
"required": [
"nodeType"
],
"type": "object"
}