CustomReaction
No description
type CustomReaction implements Node {
nodeId: ID!
id: String!
url: String!
workspaceId: String
createdByWorkspaceAccountId: String
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
commentReactionsByEmojiCodeConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [CommentReactionsOrderBy!] = [PRIMARY_KEY_ASC]
condition: CommentReactionCondition
filter: CommentReactionFilter
): CommentReactionsConnection!
commentReactionsByEmojiCode(
first: Int
offset: Int
orderBy: [CommentReactionsOrderBy!]
condition: CommentReactionCondition
filter: CommentReactionFilter
): [CommentReaction!]!
}
Fields
CustomReaction.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
CustomReaction.id ● String! non-null scalar
CustomReaction.url ● String! non-null scalar
CustomReaction.workspaceId ● String scalar
CustomReaction.createdByWorkspaceAccountId ● String scalar
CustomReaction.version ● Int! non-null scalar
CustomReaction.deletedAt ● Datetime scalar
CustomReaction.updatedAt ● Datetime! non-null scalar
CustomReaction.createdAt ● Datetime! non-null scalar
CustomReaction.workspace ● Workspace object
Reads a single Workspace that is related to this CustomReaction.
CustomReaction.createdByWorkspaceAccount ● WorkspaceAccount object
Reads a single WorkspaceAccount that is related to this CustomReaction.
CustomReaction.commentReactionsByEmojiCodeConnection ● CommentReactionsConnection! non-null object
Reads and enables pagination through a set of CommentReaction.
CustomReaction.commentReactionsByEmojiCodeConnection.first ● Int scalar
Only read the first n values of the set.
CustomReaction.commentReactionsByEmojiCodeConnection.last ● Int scalar
Only read the last n values of the set.
CustomReaction.commentReactionsByEmojiCodeConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
CustomReaction.commentReactionsByEmojiCodeConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
CustomReaction.commentReactionsByEmojiCodeConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
CustomReaction.commentReactionsByEmojiCodeConnection.orderBy ● [CommentReactionsOrderBy!] list enum
The method to use when ordering CommentReaction.
CustomReaction.commentReactionsByEmojiCodeConnection.condition ● CommentReactionCondition input
A condition to be used in determining which values should be returned by the collection.
CustomReaction.commentReactionsByEmojiCodeConnection.filter ● CommentReactionFilter input
A filter to be used in determining which values should be returned by the collection.
CustomReaction.commentReactionsByEmojiCode ● [CommentReaction!]! non-null object
Reads and enables pagination through a set of CommentReaction.
CustomReaction.commentReactionsByEmojiCode.first ● Int scalar
Only read the first n values of the set.
CustomReaction.commentReactionsByEmojiCode.offset ● Int scalar
Skip the first n values.
CustomReaction.commentReactionsByEmojiCode.orderBy ● [CommentReactionsOrderBy!] list enum
The method to use when ordering CommentReaction.
CustomReaction.commentReactionsByEmojiCode.condition ● CommentReactionCondition input
A condition to be used in determining which values should be returned by the collection.
CustomReaction.commentReactionsByEmojiCode.filter ● CommentReactionFilter input
A filter to be used in determining which values should be returned by the collection.
Interfaces
Node interface
An object with a globally unique ID.
Returned By
customReaction query ● customReactionByNodeId query ● customReactions query
Member Of
CommentReaction object ● CreateCommentReactionPayload object ● CreateCustomReactionPayload object ● CustomReactionsConnection object ● CustomReactionsEdge object ● DeleteCommentReactionPayload object ● DeleteCustomReactionPayload object ● UpdateCustomReactionPayload object ● UpsertCommentReactionPayload object ● Workspace object ● WorkspaceAccount object