mirror of
https://github.com/graphql-python/graphene.git
synced 2025-07-04 12:23:12 +03:00
Fix last imports.
This commit is contained in:
parent
dcda05f529
commit
6811f93aa4
|
@ -34,5 +34,8 @@ def test_correct_fetch_first_ship_rebels():
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
result = schema.execute(query)
|
result = schema.execute(query)
|
||||||
|
print('-------------------------------')
|
||||||
|
print(result)
|
||||||
|
print(result.errors)
|
||||||
assert not result.errors
|
assert not result.errors
|
||||||
assert result.data == expected
|
assert result.data == expected
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
from collections import Iterable
|
||||||
|
|
||||||
|
from graphql_relay.connection.arrayconnection import connection_from_list
|
||||||
|
|
||||||
from ..core.classtypes import ObjectType
|
from ..core.classtypes import ObjectType
|
||||||
from ..core.types import Field, Boolean, String, List
|
from ..core.types import Field, Boolean, String, List
|
||||||
from ..utils import memoize
|
from ..utils import memoize
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
import inspect
|
import inspect
|
||||||
import warnings
|
import warnings
|
||||||
from collections import Iterable
|
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
|
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from graphql_relay.connection.arrayconnection import connection_from_list
|
|
||||||
from graphql_relay.node.node import to_global_id
|
from graphql_relay.node.node import to_global_id
|
||||||
|
|
||||||
from ..core.classtypes import InputObjectType, Interface, Mutation, ObjectType
|
from ..core.classtypes import InputObjectType, Interface, Mutation, ObjectType
|
||||||
|
|
Loading…
Reference in New Issue
Block a user