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
At the moment documents can only be managed in a singular fashion.
Would be nice to have search/filtration/ordering of documents to find their IDs if unknown.
Potential API:
api=Api()
documents=api.documents.where(name='name').order_by('-created_at')
# => return a document manager where each document is a api.document.set(id)# from the results of the API call# Could also pre-install metadata from the initial query to reduce future callsfordocumentindocuments:
printdocument.id
The text was updated successfully, but these errors were encountered:
At the moment documents can only be managed in a singular fashion.
Would be nice to have search/filtration/ordering of documents to find their IDs if unknown.
Potential API:
The text was updated successfully, but these errors were encountered: