summaryrefslogtreecommitdiff
path: root/src/services/api/graphql/bindings.py
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2021-11-22 11:26:58 -0600
committerJohn Estabrook <jestabro@vyos.io>2021-11-22 11:26:58 -0600
commit6de15a4162224dbf2d911bce0a9d4eaa396071a3 (patch)
tree8b6257989823a6557de0a5500ce1ff9c41ee4dc2 /src/services/api/graphql/bindings.py
parentf4ec1a88b655e64372d30166b69021e2a17b2a90 (diff)
downloadvyos-1x-6de15a4162224dbf2d911bce0a9d4eaa396071a3.tar.gz
vyos-1x-6de15a4162224dbf2d911bce0a9d4eaa396071a3.zip
graphql: T3993: change name of directive
Diffstat (limited to 'src/services/api/graphql/bindings.py')
-rw-r--r--src/services/api/graphql/bindings.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/services/api/graphql/bindings.py b/src/services/api/graphql/bindings.py
index c123f68d8..1fbe13d0c 100644
--- a/src/services/api/graphql/bindings.py
+++ b/src/services/api/graphql/bindings.py
@@ -1,7 +1,6 @@
import vyos.defaults
from . graphql.mutations import mutation
-from . graphql.directives import DataDirective, ConfigFileDirective
-
+from . graphql.directives import directives_dict
from ariadne import make_executable_schema, load_schema_from_path, snake_case_fallback_resolvers
def generate_schema():
@@ -9,6 +8,6 @@ def generate_schema():
type_defs = load_schema_from_path(api_schema_dir)
- schema = make_executable_schema(type_defs, mutation, snake_case_fallback_resolvers, directives={"generate": DataDirective, "configfile": ConfigFileDirective})
+ schema = make_executable_schema(type_defs, mutation, snake_case_fallback_resolvers, directives=directives_dict)
return schema