How to get all comments in a group filtered by author?

How to get all comments in a group filtered by author?


0

I have the following query

{
    group(fullPath: "X") {
        issues {
            count
        }
        projects {
            nodes {
                    name
                    issues(sort: CREATED_DESC, state: opened ) {
                        count
                        edges {
                            node {
                                iid
                                title
                                description
                                notes {
                                    nodes {
                                        id
                                        body 
                                        author  {
                                            name 
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

It gives me all comments to open issues in group "X". But how can I retrieve only those made by author with name "B"


Load 6 more related questions


Show fewer related questions

0



Leave a Reply

Your email address will not be published. Required fields are marked *