Skip to content

System Model Definition Query

Fuuz Wiki Import edited this page Jun 7, 2026 · 3 revisions

System Model Definition Query

The System Model Definition is helpful in training your AI Models, building queries, and exposing your application ontology to visual graph tools.

1. Open the API Explorer

Navigate to the API Explorer:

API Explorer location in the Fuuz platform

2. Run the Query

Remove the boilerplate query and replace it with the query defined below.

Query editor showing the boilerplate to be replaced

Note: If you want ALL models, including system (platform) models, you must remove the dataModelDeploymentId: { _isNull: false } portion of the query. If you leave this in, it will only return models that have at least one deployment.

{
  modelDefinitions(
    where: {
      metadata: {
        mfgx: {
          dataModel: {
            dataModelDeploymentId: { _isNull: false }
          }
        }
      }
      _not: {
        _or: [
          { metadata: { mfgx: { isDataChangeModel: { _eq: true } } } }
          { name: { _endsWith: "_CustomFields" } }
        ]
      }
    }
  ) {
    name
    description
    fields {
      name
      type
      description
    }
  }
}

3. Review the Results

After executing the query, the Results panel will include the entire data graph of your Fuuz tenant.

Results panel showing the full data graph

Collapse at line #1 to export the results to another format (e.g., a text file).

Sample export: A sample export from one of our MES accelerator applications is available as an attachment on the original KB article. Download it from the original article linked above.

See Also


Source: support.fuuz.com

🏠 Home

Getting Started (14)
Training Guides (52)

Applications

Access & Users

Data Models & Schema

Screens

Weather Lookup Series — guided 3-part build

Data Flows & Integrations

Data, Reporting & Monitoring

Enterprise & Organizations

Platform Concepts & Architecture (10)
Screens & Application Design (17)
Data Models & Schema (8)
Data Flows & Scripting (51)

Designing Flows

Data Flow Nodes

JSONata Reference

Scripting

Integrations & Connectors (30)

General & iPaaS

Plex

EDI

IIoT & Edge Gateway (18)

Physical Device Connectors

Edge Data Connectors

Reporting, Documents & Dashboards (8)
Administration & Access Control (27)
Data Management (8)
Accelerators, Templates & Packages (8)
Design Standards (1)
How-To Guides (8)
FAQ & Troubleshooting (1)
Release Notes (117)

2026

2025

2024

2023

2022

2021

2020

Policies & Company (6)

Clone this wiki locally