Skip to main content

QUERY

pub const QUERY: &str = "mutation UpdatePullRequest(\n  $pullRequestId: ID!,\n  $title: String,\n  $body: String,\n  $baseRefName: String\n) {\n  updatePullRequest(\n    input: {\n      pullRequestId: $pullRequestId,\n      title: $title,\n      body: $body,\n      baseRefName: $baseRefName\n    }\n  ) {\n    pullRequest {\n      id\n      number\n    }\n  }\n}\n\n";