I define some Entities wich works fine; for meta programming issues, i now need to reflect the field properties defined in the model.
For example:
class Foo(Entity):
bar = OneToMany('Bar')
baz = ManyToMany('Baz')
here i need the information which type of relation is set: "ManyToMany", "OneToMany" or even a plain "Field", and the relation target.
Is there any simple way to reflect the Elixir Entities?