graphql-python / graphql-python/graphql-core
Support extending interfaces
- Ngôn ngữ chính
- Python
- Star
- 531
- Fork
- 146
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
# Reporting issues with GraphQL-core 3
The GraphQL protocol already supports interfaces extending other interfaces like
```graphql
interface Identifiable {
id: ID!
}
interface Resource implements Identifiable {
id: ID!
name: String!
}
type SomeResource implements Resource {
id: ID!
name: String!
}
```
When loading the schema we get an error
```
File "/usr/local/lib/python3.6/site-packages/graphql/type/validate.py", line 91, in assert_valid_schema
raise TypeError("\n\n".join(error.message for error in errors))
TypeError: Type SomeResource must implement Identifiable because it is implemented by Resource.
```
This can be solved by doing
```graphql
type SomeResource implements Resource & Identifiable {
id: ID!
name: String
}
```
But its a bit annoying
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
Đánh giá
Issue này chưa được đánh giá.