Missing frappe.get_docs() method

According to the official Frappe tutorial, in the “Document API” page, there’s a frappe.get_docs() method which is like frappe.get_doc() but allows you to retrieve many documents at once. It was mentioned in a “Product Updates for April 2026” post.

However, if I try to call frappe.get_docs() from my custom app, I get the following message:

AttributeError: module 'frappe' has no attribute 'get_docs'. Did you mean: 'get_doc'?

I just updated to Frappe 16.19. I checked the frappe/model/document.py file (where I expected to find get_docs() based on the frappe source shown on GitHub): it’s dated May 7 and doesn’t have get_docs().

…Any idea what I’m missing?

Hi @waredev

Seems was not backported to version-16, so will only see that on develop branch

Thanks for the quick and clear reply. I guess I’ll just use frappe.get_doc() while I wait for get_docs() to be added, it’s not really a problem for the script I’m writing. Do you know where this type of thing should be reported, though? It’s frustrating and confusing if a feature is officially announced but is unavailable; it should either be removed from the tutorial or added promptly to v16 (ideally with a note in the tutorial telling the reader the function is upcoming). Or have you reported this already?

HI @waredev

I am not from Frappe staff but, as far I know, product update posts are just related to products, without refers specific branch. Some features are being backported, others don’t inmediately, and others will be living on develop branch until next major version. Could be different reasons for that (incompatibilies, unfinished features, simple caution … etc …) . You can ask for backport raising an issue on Github. Maintainers will evaluate that.

I agree, some version info should be added to docs. You can also raise docs update request.
Hope this helps.