Search K
Appearance
Appearance
The ACC Get AEC Model AI node uses AI and GraphQL queries to extract specific element data from Autodesk Construction Cloud (ACC) AEC models based on user input. It combines OpenAI for natural language understanding with ACC APIs to return targeted BIM data.
Use this node to intelligently interpret user queries (e.g. “Show me all the doors on Level 2”) and retrieve matching BIM model data automatically for reporting, dashboards, or downstream tasks.
Field Label | Input Type | Description |
---|---|---|
Input Text | Text | User query describing the desired model data (e.g. “Show me all windows on Level 1”). |
Mesh Record Id | Text | The Mesh Record ID from ElasticSearch containing the Revit data reference. |
Return Properties | JSON Array | A list of property names to include in the returned data (e.g. ["Width","Height","Family Name"] ). |
Output Variable | Description |
---|---|
AecData | The JSON string result from the AI-interpreted GraphQL query containing the requested AEC model data. |
This node:
Input Text
, Mesh Record Id
, Return Properties
).AecData
for use in subsequent workflow tasks.✅ User enters: “Show me all the doors and windows on Level 2.”
→ Node classifies as level-based, extracts relevant groups and objects, builds a filtered GraphQL query, and returns only doors and windows on Level 2.
✅ User enters: “List all mechanical equipment.”
→ Node returns all mechanical equipment elements with the specified properties.
AecData
based on user query interpretation.AecData
) is a JSON string representing the GraphQLResponse from the AEC Data Model API.