Can Child Blueprint directly call its GrandParent Blueprint's function?

For example, we have 3 blueprints A,B&C, and the inheirent relationship is A->B->C means C is grandparent of A. They all override a function called f(). My question is can A directly call function f() implemented in C, but not f() implemented in B? and how?

I’m pretty sure it can’t be done, one option would be to copy the function from C to A and dont call the parent