Filter the records from the stream.
Filter records based on the last updated time, on the space and on container(s) properties. The response supports custom sorting. Otherwise, the records in the response are sorted by last updated time.
List of matching records.
Note: The maximum total response size is 20MB.
The response for a failed request.
{- "lastUpdatedTime": {
- "gt": 1705341600000,
- "lt": "2030-05-15T18:00:00.00Z"
}, - "filter": {
- "and": [
- {
- "containsAll": {
- "property": [
- "mySpace",
- "myContainer",
- "myProperty"
], - "values": [
- 10011,
- 10012
]
}
}, - {
- "range": {
- "property": [
- "my_space",
- "my_container",
- "my_weight"
], - "gte": 0
}
}
]
}, - "sources": [
- {
- "source": {
- "type": "container,",
- "space": "mySpace,",
- "externalId": "myContainer"
}, - "properties": [
- "someProperty"
]
}
], - "limit": 42,
- "sort": [
- {
- "property": [
- "space"
], - "direction": "descending"
}
]
}{- "items": [
- {
- "space": "mySpace",
- "externalId": "some_id",
- "createdTime": 1720616232,
- "lastUpdatedTime": 1720616232,
- "properties": {
- "space-name1": {
- "container-identifier1": {
- "someStringProperty": "someStringValue",
- "someDirectRelation": {
- "space": "mySpace",
- "externalId": "someNode"
}, - "someIntArrayProperty": [
- 1,
- 2,
- 3,
- 4
]
}, - "container-identifier2": {
- "someStringProperty": "someStringValue",
- "someDirectRelation": {
- "space": "mySpace",
- "externalId": "someNode"
}, - "someIntArrayProperty": [
- 1,
- 2,
- 3,
- 4
]
}
}, - "space-name2": {
- "container-identifier1": {
- "someStringProperty": "someStringValue",
- "someDirectRelation": {
- "space": "mySpace",
- "externalId": "someNode"
}, - "someIntArrayProperty": [
- 1,
- 2,
- 3,
- 4
]
}, - "container-identifier2": {
- "someStringProperty": "someStringValue",
- "someDirectRelation": {
- "space": "mySpace",
- "externalId": "someNode"
}, - "someIntArrayProperty": [
- 1,
- 2,
- 3,
- 4
]
}
}
}
}
]
}