quickbase_get_relationship_details
Retrieve comprehensive details about table relationships and lookup fields for a specified table ID, including optional related field information, using the QuickBase MCP Server.
Instructions
Get detailed information about table relationships including lookup fields
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeFields | No | Include related field details | |
tableId | Yes | Table ID to analyze relationships for |
Input Schema (JSON Schema)
{
"properties": {
"includeFields": {
"default": true,
"description": "Include related field details",
"type": "boolean"
},
"tableId": {
"description": "Table ID to analyze relationships for",
"type": "string"
}
},
"required": [
"tableId"
],
"type": "object"
}