-
Notifications
You must be signed in to change notification settings - Fork 17
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
new feature: searchFilesByTag #23
Comments
Request:
AND
|
Response is a mutistatus 207 for files: |
Hi aleks365, |
open pull request for paging and limiting on nextcloud server side. |
Hobigo, thank you for your interest.
sure, I'm waiting for the next release |
Hi aleks365, Please find an example how to use it here: would be intersting to know what you are doing with this function |
Hobigo, thank you for the quick release I use this for file storage and image classification // A simplified version
const tag = await client.getTagById(5);
const fse = await client.getFileSystemElementByTags([tag]);
const file = fse[0];
// I am sending binary data to the TensorFlow service
const url = file.getUrl();
// axios...
// Deleting file from queue
await file.removeTag('queue'); I download files from the queue and then pass binary data to the TensorFlow service. In this way, the TensorFlow service adds more tags. |
Hi aleks365 , Using a tag to "send" the files TensorFlow is a good idea. hobigo |
Hi. Is there a chance to add a search function for files after specific idTag or nameTag?
The text was updated successfully, but these errors were encountered: