mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-02 12:44:15 +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,
|
is_node,
|
||||||
ClientIDMutation,
|
ClientIDMutation,
|
||||||
Connection,
|
Connection,
|
||||||
ConnectionField
|
ConnectionField,
|
||||||
|
PageInfo
|
||||||
)
|
)
|
||||||
from .utils.resolve_only_args import resolve_only_args
|
from .utils.resolve_only_args import resolve_only_args
|
||||||
|
|
||||||
|
@ -64,4 +65,5 @@ if not __SETUP__:
|
||||||
'is_node',
|
'is_node',
|
||||||
'ClientIDMutation',
|
'ClientIDMutation',
|
||||||
'Connection',
|
'Connection',
|
||||||
'ConnectionField']
|
'ConnectionField'
|
||||||
|
'PageInfo']
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from .node import Node, is_node
|
from .node import Node, is_node
|
||||||
from .mutation import ClientIDMutation
|
from .mutation import ClientIDMutation
|
||||||
from .connection import Connection, ConnectionField
|
from .connection import Connection, ConnectionField, PageInfo
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'Node',
|
'Node',
|
||||||
|
@ -8,4 +8,5 @@ __all__ = [
|
||||||
'ClientIDMutation',
|
'ClientIDMutation',
|
||||||
'Connection',
|
'Connection',
|
||||||
'ConnectionField',
|
'ConnectionField',
|
||||||
|
'PageInfo',
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user