diff --git a/bot-github-core/src/main/java/org/commonhaus/automation/github/context/DataLabel.java b/bot-github-core/src/main/java/org/commonhaus/automation/github/context/DataLabel.java index e3857fb..7923979 100644 --- a/bot-github-core/src/main/java/org/commonhaus/automation/github/context/DataLabel.java +++ b/bot-github-core/src/main/java/org/commonhaus/automation/github/context/DataLabel.java @@ -144,7 +144,7 @@ mutation AddLabels($labelableId: ID!, $labelIds: [ID!]!, $after: String) { addLabelsToLabelable(input: { labelableId: $labelableId, labelIds: $labelIds}) { clientMutationId labelable { - """ + LABEL_FIELDS + """ + """ + PAGINATED_LABELS + """ } } }"""; @@ -176,7 +176,7 @@ mutation RemoveLabels($labelableId: ID!, $labelIds: [ID!]!, $after: String) { removeLabelsFromLabelable(input: { labelableId: $labelableId, labelIds: $labelIds}) { clientMutationId labelable { - """ + PAGINATED_LABELS + """ + """ + PAGINATED_LABELS + """ } } }"""; @@ -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 + """ } } }""";