import textwrap GlobalParticipantSearchESxPP = textwrap.dedent(""" query GlobalParticipantSearchESxPP( $term: String $queryType: String $catalogOnly: Boolean $offset: Int = 0 $limit: Int = 10 ) { globalParticipantSearchESxPP( term: $term queryType: $queryType offset: $offset limit: $limit catalogOnly: $catalogOnly ) { totalCount items { score item { id name imageUrl isPartOfCatalog labels { vendorId vendorName subaccountId subaccountName } socialStats { monthlyListeners popularity } usageStats { streamsAllTime } } } } } """)