Logo of FrontifyDeveloper PortalArrow to the right
GraphQL Reference
Object Type

AssetComment

No description
Implemented Interfaces

An Interface is an abstract type that includes a certain set of fields that a type must include to implement the interface.

NodeInterface is the base for all types.

CommentInterface for Comment returnable types.

Type Fields
id:ID!

AssetComment id.

creator:User!

User who created the AssetComment.

createdAt:DateTime!

DateTime of the AssetComment's creation.

modifier:User

User who last modified the AssetComment.

modifiedAt:DateTime

DateTime of the AssetComment's last modification.

content:String!

The content of the AssetComment. Contains User mentions in the format @[user:USER_ID].

mentionedUsers:[User]!

Mentioned User list in the content field.

isResolved:Boolean!

Indicates if an AssetComment is resolved or not.

replies(
limit: Int = 25
page: Int = 1

AssetComment's AssetCommentReplyItems list.

marking:Marking

The AssetComment Marking if it exists.

currentUserPermissions:AssetCommentUserPermissions!

AssetComment permissions of the current User.