-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Summary
The core tessera API has a global search endpoint that the SDK doesn't expose yet.
Core API endpoints to support
GET /search- Search across all entity types
Parameters
q- Search query stringtypes- Filter by entity types (assets, teams, contracts, etc.)limit/offset- Pagination
Response model
class SearchResult(BaseModel):
entity_type: str
id: UUID
name: str
fqn: str | None # For assets
snippet: str | None # Matched text context
score: float
class SearchResponse(BaseModel):
results: list[SearchResult]
total: int
limit: int
offset: intResource methods
search.query(q, types=None, limit=20, offset=0)
Use case
Quick lookup across the entire catalog without knowing which entity type you're looking for.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request