You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will generate all the entities and all entities are marked as an api resource in the class annotations. The only problem is that you don't want Thing and Country to be api resources. Thing is an abstract class so it can't even be initialized. And since Country is an embeddable it isn't linked to any database table so you can never fetch any countries from the api.
The text was updated successfully, but these errors were encountered:
Right now if I have this
schema.yml
It will generate all the entities and all entities are marked as an api resource in the class annotations. The only problem is that you don't want
Thing
andCountry
to be api resources.Thing
is an abstract class so it can't even be initialized. And sinceCountry
is an embeddable it isn't linked to any database table so you can never fetch any countries from the api.The text was updated successfully, but these errors were encountered: