quickbase_create_relationship
Establish parent-child relationships between tables by linking them via a foreign key field using this MCP server tool for QuickBase.
Instructions
Create a parent-child relationship between tables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
childTableId | Yes | Child table ID | |
foreignKeyFieldId | Yes | Foreign key field ID in child table | |
parentTableId | Yes | Parent table ID |
Input Schema (JSON Schema)
{
"properties": {
"childTableId": {
"description": "Child table ID",
"type": "string"
},
"foreignKeyFieldId": {
"description": "Foreign key field ID in child table",
"type": "number"
},
"parentTableId": {
"description": "Parent table ID",
"type": "string"
}
},
"required": [
"parentTableId",
"childTableId",
"foreignKeyFieldId"
],
"type": "object"
}