Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GraphQL Generated Issue #7

Open
happyshows opened this issue Apr 14, 2019 · 1 comment
Open

GraphQL Generated Issue #7

happyshows opened this issue Apr 14, 2019 · 1 comment
Assignees
Labels
enhancement New feature or request
Projects

Comments

@happyshows
Copy link
Owner

It seems projectIds are inherently passed to mutation

@happyshows happyshows added the bug label Apr 14, 2019
@happyshows happyshows self-assigned this Apr 14, 2019
@happyshows happyshows added this to To do in Test via automation Apr 14, 2019
@happyshows happyshows added enhancement New feature or request and removed bug labels Apr 14, 2019
@happyshows
Copy link
Owner Author

mutation CreateIssue($input: CreateIssueInput!) {
  createIssue(input: $input) {
    issue{
      repository {
        id
      }
      assignees(first:5){
        nodes{
          id
        }
      }
      labels(first:5){
        nodes{
          id
        }
      }
      title
      body
    }
  }
}
{
  "input": {
    "repositoryId": "MDEwOlJlcG9zaXRvcnkxODEyMjk1MDE=",
    "assigneeIds": [
      "MDQ6VXNlcjMyMDgxODE="
    ],
    "labelIds": [
      "MDU6TGFiZWw1OTQwMjc0ODA="
    ],
    "projectIds": [
      "MDc6UHJvamVjdDI0ODUxMzA="
    ],
    "title": "GraphQL Generated Issue",
    "body": "It seems projectIds are inherently passed to mutation"
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Test
  
To do
Development

No branches or pull requests

1 participant