Added PageInfo to graphene exports

This commit is contained in:
Syrus Akbary 2016-09-08 20:14:25 -07:00
parent d3716ff5db
commit b4657a5796
2 changed files with 6 additions and 3 deletions

View File

@ -36,7 +36,8 @@ if not __SETUP__:
is_node,
ClientIDMutation,
Connection,
ConnectionField
ConnectionField,
PageInfo
)
from .utils.resolve_only_args import resolve_only_args
@ -64,4 +65,5 @@ if not __SETUP__:
'is_node',
'ClientIDMutation',
'Connection',
'ConnectionField']
'ConnectionField'
'PageInfo']

View File

@ -1,6 +1,6 @@
from .node import Node, is_node
from .mutation import ClientIDMutation
from .connection import Connection, ConnectionField
from .connection import Connection, ConnectionField, PageInfo
__all__ = [
'Node',
@ -8,4 +8,5 @@ __all__ = [
'ClientIDMutation',
'Connection',
'ConnectionField',
'PageInfo',
]