graphql-python / graphql-python/graphene

AttributeError: partially initialized module 'graphene' has no attribute 'ObjectType' (most likely due to a circular import)

Đang mở
#1,373 1 bình luận 0 reaction 0 người được giao Xem trên GitHub
🐛 bug
Ngôn ngữ chính
Python
Star
8.2k
Fork
818
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Mô tả

**Note: for support questions, please use stackoverflow**. This repository's issues are reserved for feature requests and bug reports.

* **What is the current behavior?**

```
File "/Users/noj/recurrency/legacy-api/v4/graphql.py", line 1, in
import graphene
File "/opt/homebrew/lib/python3.9/site-packages/graphene/__init__.py", line 3, in
from .types import (
File "/opt/homebrew/lib/python3.9/site-packages/graphene/types/__init__.py", line 2, in
from graphql import ResolveInfo
File "/Users/noj/recurrency/legacy-api/v4/graphql.py", line 3, in
class Query(graphene.ObjectType):
AttributeError: partially initialized module 'graphene' has no attribute 'ObjectType' (most likely due to a circular import)
```

* **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem** via
a github repo, https://repl.it or similar.

```
import graphene

class Query(graphene.ObjectType):
hello = graphene.String(description='A typical hello world')

def resolve_hello(self, info):
return 'World'

schema = graphene.Schema(query=Query)

if __name__ == "__main__":
query = '''
query SayHello {
hello
}
'''
result = schema.execute(query)

print (result)

```

* **What is the expected behavior?**

No errors.

* **Please tell us about your environment:**

- Version: Python 3.9.7
- Platform: Mac

* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow)

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Hướng nghiên cứu

Bắt đầu với traceback và ví dụ Python tối thiểu trong issue, chú ý đến entry point cục bộ v4/graphql.py và chuỗi import của graphene. Kiểm tra xem hành vi được báo cáo có thể tái hiện trong môi trường Python 3.9.7 đã nêu hay không; hoàn tất nghĩa là xác định đây là bug của Graphene hay một vấn đề chỉ xảy ra với bố cục module của ví dụ.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
graphql, python
Lĩnh vực
api, backend
Loại issue
Lỗi
Độ khó
2/5
Thời gian dự kiến
1-3 giờ
Mức độ hoạt động
Đình trệ
Độ rõ ràng
Khá rõ ràng
Mức phù hợp với người mới
25/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.