mirror of
https://github.com/graphql-python/graphene.git
synced 2025-07-15 18:42:28 +03:00
Added GlobalID as well.
This commit is contained in:
parent
c15ce93542
commit
3888307f89
|
@ -36,6 +36,7 @@ if not __SETUP__:
|
||||||
from .relay import (
|
from .relay import (
|
||||||
Node,
|
Node,
|
||||||
is_node,
|
is_node,
|
||||||
|
GlobalID,
|
||||||
ClientIDMutation,
|
ClientIDMutation,
|
||||||
Connection,
|
Connection,
|
||||||
ConnectionField,
|
ConnectionField,
|
||||||
|
@ -67,6 +68,7 @@ if not __SETUP__:
|
||||||
'resolve_only_args',
|
'resolve_only_args',
|
||||||
'Node',
|
'Node',
|
||||||
'is_node',
|
'is_node',
|
||||||
|
'GlobalID',
|
||||||
'ClientIDMutation',
|
'ClientIDMutation',
|
||||||
'Connection',
|
'Connection',
|
||||||
'ConnectionField',
|
'ConnectionField',
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
from .node import Node, is_node
|
from .node import Node, is_node, GlobalID
|
||||||
from .mutation import ClientIDMutation
|
from .mutation import ClientIDMutation
|
||||||
from .connection import Connection, ConnectionField, PageInfo
|
from .connection import Connection, ConnectionField, PageInfo
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'Node',
|
'Node',
|
||||||
'is_node',
|
'is_node',
|
||||||
|
'GlobalID',
|
||||||
'ClientIDMutation',
|
'ClientIDMutation',
|
||||||
'Connection',
|
'Connection',
|
||||||
'ConnectionField',
|
'ConnectionField',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user