Logo of FrontifyDeveloper PortalArrow to the right
GraphQL Reference
Interface

Comment

CommentInterface for Comment returnable types.

Implemented by

An Interface is an abstract type that includes a certain set of fields that a type must include to implement the interface.Following types all implement this interface and must have all fields of this interface present.The __typename field resolves to a String which lets you differentiate different data types from each other on the client.

Type Fields
id:ID!

The Comment identifier.

creator:User!

The User representing the Comment creator.

createdAt:DateTime!

The DateTime of the Comment creation.

modifier:User

The last User to modify the Comment.

modifiedAt:DateTime

The DateTime of the Comment last modification.

content:String!

The Comment message.