From e7ef305b8f36422b179a36454434f6de3ee0cb97 Mon Sep 17 00:00:00 2001 From: Guillaume Mazoyer Date: Mon, 14 Oct 2024 10:34:34 +0200 Subject: [PATCH] Report attribute permission as int --- backend/infrahub/graphql/types/attribute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/infrahub/graphql/types/attribute.py b/backend/infrahub/graphql/types/attribute.py index bc22d05cd8..dd1e8f3b53 100644 --- a/backend/infrahub/graphql/types/attribute.py +++ b/backend/infrahub/graphql/types/attribute.py @@ -56,7 +56,7 @@ class RelatedPrefixNodeInput(InputObjectType): class PermissionType(ObjectType): - update_value = String(required=False) + update_value = Int(required=False) class AttributeInterface(InfrahubInterface):