OGM (v3.1.1) doesn't seem to support @NodeEntity on an interface class with the label specified explicitly. Let's say, I have an annotated interface:
@NodeEntity(label = "MY_LABEL")
interface MyInterface { ... }
which is implemented by a class MyInt...