unison/unison-src/transcripts/api-find.md
2023-08-11 17:52:21 -07:00

27 lines
439 B
Markdown

# find api
```unison
rachel.filesystem.x = 42
ross.httpClient.y = 43
joey.httpServer.z = 44
joey.yaml.zz = 45
```
```ucm
.> add
```
```api
-- Namespace segment prefix search
GET /api/non-project-code/find?query=http
-- Namespace segment suffix search
GET /api/non-project-code/find?query=Server
-- Substring search
GET /api/non-project-code/find?query=lesys
-- Cross-segment search
GET /api/non-project-code/find?query=joey.http
```