Skip to content

Commit d0a9481

Browse files
committed
update description
1 parent 2534c00 commit d0a9481

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

backend/infrahub/graphql/types/attribute.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ class AttributeInterface(InfrahubInterface):
7474

7575

7676
class InfrahubAttributeMetaObject(ObjectType):
77-
updated_by = String(required=False, description="UUID of the user that last modified the attribute or relationship")
77+
updated_by = String(required=False, description="User that last modified the attribute")
7878
updated_at = DateTime(
7979
required=False,
80-
description="Date/Time when the attribute or relationship was last modified by a user or a system task",
80+
description="Date/Time when the attribute was last modified by a user or a system task",
8181
)
8282

8383

backend/infrahub/graphql/types/branch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async def get_by_name(
6767

6868

6969
class InfrahubBranchMetaObject(ObjectType):
70-
updated_by = String(required=False, description="UUID of the user that last modified the attribute or relationship")
70+
updated_by = String(required=False, description="User that last modified the attribute or relationship")
7171
updated_at = DateTime(
7272
required=False,
7373
description="Date/Time when the attribute or relationship was last modified by a user or a system task",

backend/infrahub/graphql/types/relationship.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ class RelationshipPeer(ObjectType):
99

1010

1111
class InfrahubRelationshipMetaObject(ObjectType):
12-
updated_by = String(required=False, description="UUID of the user that last modified the attribute or relationship")
12+
updated_by = String(required=False, description="User that last modified the relationship")
1313
updated_at = DateTime(
1414
required=False,
15-
description="Date/Time when the attribute or relationship was last modified by a user or a system task",
15+
description="Date/Time when the relationship was last modified by a user or a system task",
1616
)
1717

1818

0 commit comments

Comments
 (0)