Skip to content

CreateIssueBoardItemInput

Input for the createIssueBoardItem mutation

graphql
input CreateIssueBoardItemInput {
  issue: ID!
  issueBoard: ID!
  position: Float!
}

Fields

CreateIssueBoardItemInput.issue ● ID! non-null scalar

ID of the Issue to represent in this board item

CreateIssueBoardItemInput.issueBoard ● ID! non-null scalar

ID of the IssueBoard to add this item to

CreateIssueBoardItemInput.position ● Float! non-null scalar

Initial position of the new board item

Member Of

createIssueBoardItem mutation

Released under the MIT License.