pwweb / artomator

Artomator: Custom commands making life easier for Laravel.
MIT License
4 stars 1 forks source link

GraphQL Schema Namespacing #22

Closed rabrowne85 closed 4 years ago

rabrowne85 commented 4 years ago

When the model is in a namespace other than App\Models\ then additional code is needed to direct GraphQL to the correct location i.e.

accounts: [Account!]! @paginate(defaultCount: 10, model: "App\\Models\\Ams\\Account")
...
type Account @model(namespace: "App\\Models\\Ams\\Account") {
rabrowne85 commented 4 years ago

Added to the feature/lg branch.