Skip to content

Commit

Permalink
🐛 correct arguments for add/remove labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Jun 8, 2024
1 parent 394a140 commit 36b1c11
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ mutation AddLabels($labelableId: ID!, $labelIds: [ID!]!, $after: String) {
addLabelsToLabelable(input: { labelableId: $labelableId, labelIds: $labelIds}) {
clientMutationId
labelable {
""" + LABEL_FIELDS + """
""" + PAGINATED_LABELS + """
}
}
}""";
Expand Down Expand Up @@ -176,7 +176,7 @@ mutation RemoveLabels($labelableId: ID!, $labelIds: [ID!]!, $after: String) {
removeLabelsFromLabelable(input: { labelableId: $labelableId, labelIds: $labelIds}) {
clientMutationId
labelable {
""" + PAGINATED_LABELS + """
""" + PAGINATED_LABELS + """
}
}
}""";
Expand Down Expand Up @@ -206,7 +206,7 @@ mutation CreateLabel($name: String!, $repositoryId: ID!, $color: String!) {
createLabel(input: { name: $name, repositoryId: $repositoryId, color: $color }) {
clientMutationId
label {
""" + PAGINATED_LABELS + """
""" + LABEL_FIELDS + """
}
}
}""";
Expand Down

0 comments on commit 36b1c11

Please sign in to comment.