Skip to content

GraphQL: Cannot moveProjectCard with the ID returned from Column.cards #24404

Discussion options

You must be logged in to vote

I wasn’t using the id of the ProjectCard, but the ProjectCard.content. Changing my query to solved my issue.

fragment OnProject on Project {
    id
    name
    columns(first: 100) {
        nodes {
            name
            id
            cards(first: 100, archivedStates: NOT_ARCHIVED) {
                nodes {
                    id
                    title
                    content {
                        __typename
                        ... OnIssue
                        ... OnPullRequest
                    }
                }
            }
        }
    }
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant