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

fix(BA-596): Add project_node field to GQL UserNode type #3529

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

fregataa
Copy link
Member

@fregataa fregataa commented Jan 23, 2025

resolves #3526 (BA-596)

GQL query example

query UsersQuery {
    user_nodes{
        edges {
            cursor
            node {
                id
                email
                project_nodes {
                    edges {
                        node {
                            id
                            name
                        }
                    }
                    count
                }
            }
        }
        count
        pageInfo {
            hasNextPage
            hasPreviousPage
        }
    }
}

Checklist: (if applicable)

  • Milestone metadata specifying the target backport version
  • Mention to the original issue

@fregataa fregataa added this to the 25Q1 milestone Jan 23, 2025
@fregataa fregataa requested a review from agatha197 January 23, 2025 06:37
@fregataa fregataa self-assigned this Jan 23, 2025
@github-actions github-actions bot added comp:manager Related to Manager component size:L 100~500 LoC labels Jan 23, 2025
@github-actions github-actions bot added the area:docs Documentations label Jan 23, 2025
@fregataa fregataa changed the title fix(BA-: Add project_node field to GQL UserNode type fix(BA-596): Add project_node field to GQL UserNode type Jan 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:docs Documentations comp:manager Related to Manager component size:L 100~500 LoC
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add Project Information to UserNode in GraphQL API
1 participant