import textwrap GlobalParticipantSearchES = textwrap.dedent(""" query GlobalParticipantSearchES($term: String, $queryType: String, $catalogOnly: Boolean, $offset: Int = 0, $limit: Int = 10, $orderBy: [GlobalParticipantSearchOrderByInput!], $filters: GlobalParticipantSearchFilterInput) { globalParticipantSearchES( term: $term queryType: $queryType catalogOnly: $catalogOnly offset: $offset limit: $limit orderBy: $orderBy filters: $filters ) { totalCount items { score item { id name imageUrl isPartOfCatalog countryCode labels { vendorId vendorName subaccountId subaccountName __typename } socialStats { monthlyListeners popularity __typename } usageStats { streamsAllTime streams28Days streams7Days __typename } __typename } __typename } __typename } } """)