2026-01-15 11:57:16 +00:00
|
|
|
type: object
|
2026-02-23 15:56:29 +00:00
|
|
|
description: WebSocket request for rows service (flow-hosted service)
|
2026-01-15 11:57:16 +00:00
|
|
|
required:
|
|
|
|
|
- id
|
|
|
|
|
- service
|
|
|
|
|
- flow
|
|
|
|
|
- request
|
|
|
|
|
properties:
|
|
|
|
|
id:
|
|
|
|
|
type: string
|
|
|
|
|
description: Unique request identifier
|
|
|
|
|
service:
|
|
|
|
|
type: string
|
2026-02-23 15:56:29 +00:00
|
|
|
const: rows
|
|
|
|
|
description: Service identifier for rows service
|
2026-01-15 11:57:16 +00:00
|
|
|
flow:
|
|
|
|
|
type: string
|
|
|
|
|
description: Flow ID
|
|
|
|
|
request:
|
2026-02-23 15:56:29 +00:00
|
|
|
$ref: '../../../../api/components/schemas/query/RowsQueryRequest.yaml'
|
2026-01-15 11:57:16 +00:00
|
|
|
examples:
|
|
|
|
|
- id: req-1
|
2026-02-23 15:56:29 +00:00
|
|
|
service: rows
|
2026-01-15 11:57:16 +00:00
|
|
|
flow: my-flow
|
|
|
|
|
request:
|
|
|
|
|
query: "{ entity(id: \"https://example.com/entity1\") { properties { key value } } }"
|