- Einleitung
- Erste Schritte
- Erstellen mit Maestro BPMN
- Grundlegendes zur BPMN-Modellierung von Maestro
- Öffnen der Modellierungsarbeitsfläche
- Modellierung Ihres Prozesses
- Ausrichten und Verbinden von BPMN-Elementen
- Autopilot for Maestro (Vorschau)
- Prozess-Repository
- Einen einfachen BPMN-Prozess implementieren
- Einen komplexen BPMN-Prozess implementieren
- Debugging
- Simulieren
- Evaluations (Preview)
- Häufige Implementierungsszenarien
- Erstellen mit Maestro Case
- Einführung in Maestro Case
- Maestro BPMN vs. Maestro Case: Wann wird Case Management verwendet?
- Der Lebenszyklus von Maestro Case: Vom Ereignis-Trigger zum App-Erlebnis
- Erstellen Sie Ihren ersten Fall mit Maestro Case
- Build a Maestro Case with a coding agent (preview)
- Definieren von Fallschlüsseln (System vs. extern)
- Erstellen von Task-E/A- und Write-Back-Verträgen
- Austrittsregeln und Beendigung der frühen Phase
- Modellieren von primären und sekundären Phasen
- Auslösen eines Falls aus Data Fabric
- Implementieren von Personas und Berechtigungen auf Phasenebene
- Festlegen von SLAs und automatisierten Eskalationsregeln
- Konfigurieren einer Nacharbeitsschleife (Wiedereintritt)
- Configuring and testing the Case Manager Agent (preview)
- Eingabe- und Ausgabevertrag für den Fall Manager
- Wörterbuch für die Komponente „Maestro Case“.
- Erstellen mit Maestro Flow
- Skript
- HTTP-Anfrage (HTTP Request)
- Datentransformation
- Entscheidung
- Umschalten (Switch)
- Schleife
- Verzögerung (Delay)
- Zusammenführen
- Beenden
- Terminate
- Pseudo
- Manual Trigger
- Geplanter Trigger
- Autonomer Agent
- BPMN-Prozess (Business Process Model and Notation).
- RPA-Workflow
- API-Workflow
- Menschliche Aufgabe
- Entitätsdatensätze abfragen
- Entitätsdatensatz erstellen
- Entitätsdatensatz aktualisieren
- Delete entity record
- Connector-Knoten
- Integrationen
- Betrieb
- Überwachung
- Optimieren
- Referenzinformationen
Query entity records node for reading one or more records from a Data Fabric entity in a Flow, without an Integration Service connection.
Reads one or more records from a Data Fabric entity. This is a native Flow node — it doesn't require an Integration Service (IS) connection. It works only with entities created inside a VS Code solution. Refer to Entities in VS Code.
Konfiguration
| Feld | Erforderlich | Beschreibung |
|---|---|---|
| Data Fabric-Entität | Ja | The entity to query. Select Refresh schema if the entity's fields changed since you added the node. |
| Records to return | Ja | Single record returns one record and fails if the filter matches more than one. Multiple records returns an array of matching records. |
| Filter condition(s) | Nein | One or more field/operator/value conditions, combined with All (AND) or Any (OR). |
| Sort by (Multiple records only) | Nein | The field to sort results by, and direction (Ascending or Descending). Without a sort, the query can return a different set of records each time. |
| Records to skip (Multiple records only) | Nein | Number of matching records to skip before returning results. Default 0. |
| Record limit (Multiple records only) | Nein | Maximum number of records to return. Default 100, maximum 1000. |
Within Filter condition(s), select Add condition for another condition at the same level, or Add group to nest a condition group with its own AND/OR logic.
This node doesn't support the Error handling tab.
Ausgabe
For Single record, the output fields mirror the entity's schema directly. For Multiple records, the output is a results array, with each item mirroring the entity's schema. Access them downstream as $vars.<nodeId>.output.<fieldName> (single record) or $vars.<nodeId>.output.results[<index>].<fieldName> (multiple records).
The output panel includes a Live mode. When it is enabled, the output is a live reference to the query, tagged Live query in the schema tree — downstream nodes always see current values without re-running the query. Update entity record and Delete entity record can target a record found by this node directly, by referencing it instead of re-specifying the entity and filter.