8000 feat: add `list()` method by eduardoboucas · Pull Request #82 · netlify/blobs · GitHub
[go: up one dir, main page]

Skip to content

feat: add list() method #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: update README
  • Loading branch information
eduardoboucas authored Oct 26, 2023
commit 3c662f24ffc1cd6f8c78c71f7fc7b44c8afe408a
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Deletes an object with the given key, if one exists.
await store.delete('my-key')
```

### `list(options?: { cursor?: string, paginate?: boolean. prefix?: string }): Promise<{ blobs: BlobResult[] }>`
### `list(options?: { cursor?: string, paginate?: boolean. prefix?: string }): Promise<{ blobs: BlobResult[], directories: string[] }>`

Returns a list of blobs in a given store.

Expand Down
0