You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It could be nice to change GET /library/keys to accept a prefix to include in the results, as in:
GET /library/keys
(returns all keys)
GET /library/keys?foo
(returns all keys starting with 'foo')
This would be handy in the case where someone has a significant amount of files in a folder, potentially deeply nested, and a client needs to make a decision about how to download the folder. See #11.
The text was updated successfully, but these errors were encountered:
The way I wrote the issue, yes it would just be to get a folder's contents, but after thinking about it more, this can be generalized to accommodate search features, which is probably a more useful thing to do.
Currently the search strategy for GET /library?relativePath=foodoes match similarly to your example, but it doesn't give the nested items. The results of GET /library?relativePath=foo with your structure would be:
It could be nice to change
GET /library/keys
to accept a prefix to include in the results, as in:This would be handy in the case where someone has a significant amount of files in a folder, potentially deeply nested, and a client needs to make a decision about how to download the folder. See #11.
The text was updated successfully, but these errors were encountered: