Weaviate integration (Data, Developer Tools, AI). Imported from open-connector.
{base_url}/v1/meta
/v1/schema
| Param | Type | Required | Description |
|---|---|---|---|
| consistency | boolean | optional | Whether Weaviate should proxy the schema request to the cluster leader for stro… |
/v1/schema/{className}
| Param | Type | Required | Description |
|---|---|---|---|
| className | string | required | The Weaviate collection name to retrieve. |
| consistency | boolean | optional | Whether Weaviate should proxy the schema request to the cluster leader for stro… |
/v1/objects
| Param | Type | Required | Description |
|---|---|---|---|
| className | string | required | The Weaviate collection name to query. |
| tenant | string | optional | The tenant name to target for a multi-tenant Weaviate collection. |
| after | string | optional | The threshold UUID to page after. Use an empty string only when intentionally f… |
| offset | integer | optional | The zero-based result offset. |
| limit | integer | optional | The maximum number of objects to return. |
| include | string | optional | Additional fields to include, such as classification, vector, or interpretation. |
| sort | string | optional | Comma-separated property names to sort by, such as city or country,city. |
| order | string | optional | Comma-separated sort directions matching sort, such as asc or desc. |
/v1/objects/{className}/{id}
| Param | Type | Required | Description |
|---|---|---|---|
| className | string | required | The Weaviate collection name the object belongs to. |
| id | string | required | The Weaviate object UUID. |
| include | string | optional | Additional fields to include, such as classification, vector, or interpretation. |
| consistencyLevel | string | optional | The optional consistency level query value to forward. |
| nodeName | string | optional | The optional node name query value to forward. |
| tenant | string | optional | The tenant name to target for a multi-tenant Weaviate collection. |