Short answer: You can search objects in Weaviate by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Weaviate Search Objects action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Collection collection | string | Required | Document |
Query Text query | string | Required | Natural-language query. Vectorized server-side. |
Limit limit | number | Optional | – |
Properties to Return properties | string | Optional | Space-separated property names. Reduces response size. |
{"collection": "Document","query": "what is photosynthesis","limit": "{{trigger.limit}}","properties": "{{trigger.properties}}"}
{"data": {"Get": {"Document": [{"source": "doc.pdf","content": "...","_additional": {"id": "abc-123","distance": 0.21}}]}}}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.