GraphQL reference

StartCommentThreadPayload

Object

Autogenerated return type of StartCommentThread.

mutation { organization(id: $organizationId) { project(id: $projectId) { startCommentThread } } }

Example

mutation StartCommentThread(
  $organizationId: ID!
  $projectId: ID!
  $input: StartCommentThreadInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      startCommentThread(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!