0

Following the Graphene-Django basic tutorial verbatim results in this helpful situation.

Maybe there is a dir problem or something? As soon as we add the installed app, it is not found?

Tried everything here

dras
  • 138
  • 4
  • 14

1 Answers1

1

Try to open "cookbook/ingredients/" folder and change name in IngredientsConfig to cookbook.ingredients:

class IngredientsConfig(AppConfig):
    default_auto_field = 'django.db.models.BigAutoField'
    name = 'cookbook.ingredients'
N0str
  • 11
  • 1