Closed rabrowne85 closed 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.
App\Models\
accounts: [Account!]! @paginate(defaultCount: 10, model: "App\\Models\\Ams\\Account") ... type Account @model(namespace: "App\\Models\\Ams\\Account") {
Added to the feature/lg branch.
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.