Navinesh Chand
Navinesh Chand
You could use this to set a color for indent guide in settings.json ` "workbench.colorCustomizations": { "editorIndentGuide.activeBackground": "#71a2be" }`
You could do something like this. ```python find_employee = graphene.Field(lambda: Employee, name=graphene.String()) def resolve_find_employee(self, args, context, info): query = Employee.get_query(context) name = args.get('name') return query.filter(EmployeeModel.name == name).first() ```
I managed to get this working by deleting **yarn.lock** file and running `yarn install`