Skip to content

Commit 1d44f5f

Browse files
committed
updated to reflect changes to graphql-core
1 parent 6272057 commit 1d44f5f

34 files changed

+39
-41
lines changed

graphene/contrib/django/tests/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from graphql.core.type import GraphQLObjectType
1+
from graphql.type import GraphQLObjectType
22
from mock import patch
33

44
from graphene import Schema

graphene/contrib/sqlalchemy/tests/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from graphql.core.type import GraphQLObjectType
1+
from graphql.type import GraphQLObjectType
22
from pytest import raises
33

44
from graphene import Schema

graphene/core/classtypes/enum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import six
2-
from graphql.core.type import GraphQLEnumType, GraphQLEnumValue
2+
from graphql.type import GraphQLEnumType, GraphQLEnumValue
33

44
from .base import ClassTypeMeta, ClassType
55
from ..types.base import MountedType

graphene/core/classtypes/inputobjecttype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from functools import partial
22

3-
from graphql.core.type import GraphQLInputObjectType
3+
from graphql.type import GraphQLInputObjectType
44

55
from .base import FieldsClassType
66

graphene/core/classtypes/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from functools import partial
22

33
import six
4-
from graphql.core.type import GraphQLInterfaceType
4+
from graphql.type import GraphQLInterfaceType
55

66
from .base import FieldsClassTypeMeta
77
from .objecttype import ObjectType, ObjectTypeMeta

graphene/core/classtypes/objecttype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from functools import partial
22

33
import six
4-
from graphql.core.type import GraphQLObjectType
4+
from graphql.type import GraphQLObjectType
55

66
from graphene import signals
77

graphene/core/classtypes/scalar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from graphql.core.type import GraphQLScalarType
1+
from graphql.type import GraphQLScalarType
22

33
from ..types.base import MountedType
44
from .base import ClassType

graphene/core/classtypes/tests/test_enum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from graphql.core.type import GraphQLEnumType
1+
from graphql.type import GraphQLEnumType
22

33
from graphene.core.schema import Schema
44

graphene/core/classtypes/tests/test_inputobjecttype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
from graphql.core.type import GraphQLInputObjectType
2+
from graphql.type import GraphQLInputObjectType
33

44
from graphene.core.schema import Schema
55
from graphene.core.types import String

graphene/core/classtypes/tests/test_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from graphql.core.type import GraphQLInterfaceType, GraphQLObjectType
1+
from graphql.type import GraphQLInterfaceType, GraphQLObjectType
22
from py.test import raises
33

44
from graphene.core.schema import Schema

0 commit comments

Comments
 (0)