query LabelParticipantSearch($term: String!) {
    activeProfile {
        labelParticipantSearchV2(term: $term, offset: 0, first: 100) {
            totalCount
            items {
                item {
                    uuid
                    name
                    trackParticipations(
                        filter: { participated_as: "track_writer" }
                    ) {
                        participatedAs
                        track {
                            tuid
                            trackName
                            isrc
                            participations {
                                participatedAs
                                participant {
                                    uuid
                                    name
                                }
                            }
                            product {
                                imageLocation
                                productName
                                releaseDate
                                upc
                                productId
                            }
                            labelSoundRecording {
                                id
                                globalSoundRecording {
                                    id
                                    analytics {
                                        streams {
                                            aggregate {
                                                allTime
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
