Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mesa.dev/llms.txt

Use this file to discover all available pages before exploring further.

Bookmarks are named refs analogous to Git branches.
bookmarks = await mesa.bookmarks.list(repo="app")

for bookmark in bookmarks.bookmarks:
    print(bookmark.name, bookmark.change_id, bookmark.is_default)

Options

repo
str
required
Repository name.
org
str | None
Organization override.
cursor
str | None
Opaque pagination cursor from a previous response.
limit
int | None
Maximum number of bookmarks to return. The server maximum is 100.

Response

next_cursor
str | None
Cursor for the next page, or None when no more results remain.
has_more
bool
Whether another page is available.
bookmarks
list
Bookmark objects with name, change_id, and is_default.

Required scope

read