File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
backend/infrahub/graphql/types Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -74,10 +74,10 @@ class AttributeInterface(InfrahubInterface):
7474
7575
7676class 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
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ async def get_by_name(
6767
6868
6969class 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" ,
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ class RelationshipPeer(ObjectType):
99
1010
1111class 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
You can’t perform that action at this time.
0 commit comments