From de3bb2d6358c47f5c63e9681b4888013d7d3290c Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 8 May 2024 14:29:04 -0400 Subject: [PATCH] Remove obsolete reference to Graphene --- docs/plugins/development/graphql-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/development/graphql-api.md b/docs/plugins/development/graphql-api.md index 05f11704c..603b0cead 100644 --- a/docs/plugins/development/graphql-api.md +++ b/docs/plugins/development/graphql-api.md @@ -2,7 +2,7 @@ ## Defining the Schema Class -A plugin can extend NetBox's GraphQL API by registering its own schema class. By default, NetBox will attempt to import `graphql.schema` from the plugin, if it exists. This path can be overridden by defining `graphql_schema` on the PluginConfig instance as the dotted path to the desired Python class. This class must be a subclass of `graphene.ObjectType`. +A plugin can extend NetBox's GraphQL API by registering its own schema class. By default, NetBox will attempt to import `graphql.schema` from the plugin, if it exists. This path can be overridden by defining `graphql_schema` on the PluginConfig instance as the dotted path to the desired Python class. ### Example