This is my MWE -
\begin{filecontents}{test.bib}
@BOOK{म्हणी,
TITLE={मराठी भाषेतील असभ्य म्हणी व वाक्प्रचार},
AUTHOR={मराठे, अश्विनीकुमार दत्तात्रेय},
YEAR={2012},
PUBLISHER={ग्रंथाली}
}
\end{filecontents}
\documentclass{article}
\usepackage{polyglossia}
\setdefaultlanguage{marathi}
\usepackage{lipsum}
\usepackage[backend=biber,style=apa]{biblatex}
\addbibresource{test.bib}
\setmainfont[Script=Devanagari,Mapping=devanagarinumenrals]{Yashomudra} %Replace with any Devanagari font.
\begin{document}
\lipsum[1-2]
\cite{म्हणी}
\printbibliography
\end{document}
This MWE results in some error messages, e.g.:
! Undefined control sequence.
<argument> \datecircaprint \mkbibdateapalongextra
{labelyear}{labelmonth}{la...
l.19 ^^I\cite{म्हणी}
See the full .log file for further details. What could be the possible reason? How to solve this?

INFO. – Ralf Stubner Dec 03 '19 at 13:05.lbxfile for your language, see for example https://tex.stackexchange.com/q/310471/35864 and links. Since APA style is a bit tricky and the definitions needed bybiblatex-apaneed some work I would urge you to check out whether it would be possible to use one of the standard styles (style=authoryear,for example) instead of the highly specialised and American-centric APA style. – moewe Dec 04 '19 at 21:22\DeclareLanguageMapping{marathi}{english-apa}after biblatex, it compiles and you will see why you need to define amarathi-apa.lbxfile (see thebiblatex-apafolder for files for other languages). When the styles don't provide their own language-specific string definition files, biblatex picks up the babel/polyglossia language setting and so can plug in the relevant string constants that way, like the heading for 'bibliography' (e.g, see the contents of thegloss-marathi.ldffile in thepolyglossiafolder). Although mapping is available, and inheritance... – Cicada Dec 08 '19 at 11:53