mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 04:07:16 +03:00
Added PageInfo to graphene exports
This commit is contained in:
parent
d3716ff5db
commit
b4657a5796
|
@ -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']
|
||||
|
|
|
@ -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',
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue
Block a user