mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
18 lines
319 B
Python
18 lines
319 B
Python
import graphene
|
|
|
|
from circuits.graphql.schema import CircuitsQuery
|
|
from extras.graphql.schema import ExtrasQuery
|
|
from ipam.graphql.schema import IPAMQuery
|
|
|
|
|
|
class Query(
|
|
CircuitsQuery,
|
|
ExtrasQuery,
|
|
IPAMQuery,
|
|
graphene.ObjectType
|
|
):
|
|
pass
|
|
|
|
|
|
schema = graphene.Schema(query=Query, auto_camelcase=False)
|