OBJECT

User

A user account. All fields are for an authorized user, except for email

link GraphQL Schema definition

  • type User {
  • # current storage subscription a user is subscribed to
  • active_storage_subscription: Subscription
  • # Active Plan a user is subscribed to, returns only a StorageTier
  • active_storage_tier: StorageTier!
  • # List of active subscriptions for a user
  • active_subscriptions: [Subscription!]!
  • # current tier permission a user is subscribed to
  • active_tier_permission: TierPermission!
  • # Banners to show for a given input
  • #
  • # Arguments
  • # type: [Not documented]
  • ad_banners(type: String): [AdBanner!]
  • # List out all the albums for the current user
  • #
  • # Arguments
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # search_term: [Not documented]
  • # sort_by: [Not documented]
  • # sort_order: [Not documented]
  • # include_organization_albums: [Not documented]
  • albums_cursor(
  • offset: Int,
  • limit: Int,
  • search_term: String,
  • sort_by: AlbumsSortBy,
  • sort_order: SortOrder,
  • include_organization_albums: Boolean
  • ): Albums!
  • # Audio analytics for top artists for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • analytics_top_artists(
  • input: AnalyticsTopArtistsCursorInput
  • ): [AnalyticsTopArtist!]!
  • # Number of top artists for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • analytics_top_artists_count(
  • input: AnalyticsTopArtistsCursorInput
  • ): Int!
  • # Audio analytics for top medias for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • analytics_top_content(
  • input: AnalyticsTopContentCursorInput
  • ): [AnalyticsTopContent!]!
  • # Number of top medias for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • analytics_top_content_count(
  • input: AnalyticsTopContentCursorInput
  • ): Int!
  • # Audio analytics for top countries for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • analytics_top_geocountries(
  • input: AnalyticsTopGeocountryCursorInput
  • ): [AnalyticsTopGeocountry!]!
  • # Any more top countries for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • analytics_top_geocountries_any_more_results(
  • input: AnalyticsTopGeocountryCursorInput
  • ): Boolean!
  • # Number of top countries for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • analytics_top_geocountries_count(
  • input: AnalyticsTopGeocountryCursorInput
  • ): Int!
  • # Does this user have any medias with assets that have claims on them?
  • any_claims_on_my_own_assets: Boolean!
  • # List out all Artists for the current user
  • #
  • # Arguments
  • # user_id: [Not documented]
  • # search_term: [Not documented]
  • # has_chartmetric: [Not documented]
  • # has_analytics: [Not documented]
  • # has_connect_spotify: [Not documented]
  • # include_admins: [Not documented]
  • # input: [Not documented]
  • artists(
  • user_id: ID,
  • search_term: String,
  • has_chartmetric: Boolean,
  • has_analytics: Boolean,
  • has_connect_spotify: Boolean,
  • include_admins: Boolean,
  • input: ArtistsCursorInput
  • ): [Artist!]!
  • # Any more artists in this user
  • #
  • # Arguments
  • # input: [Not documented]
  • artists_any_more_results(input: ArtistsCursorInput): Boolean!
  • # Count of artists for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • artists_count(input: ArtistsCursorInput): Int!
  • # revenue for assets
  • #
  • # Arguments
  • # input: [Not documented]
  • asset_revenues(input: AssetRevenuesCursorInput): [AssetRevenue!]!
  • # Audio analytics for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • audio_analytics(input: AudioAnalyticsCursorInput): AudioAnalytics!
  • # Audio analytics by age group for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • audio_analytics_by_agegroup(
  • input: AudioAnalyticsByAgegroupCursorInput
  • ): [AudioAnalyticsByAgegroup!]!
  • # Audio analytics by device for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • audio_analytics_by_device(
  • input: AudioAnalyticsByDeviceCursorInput
  • ): [AudioAnalyticsByDevice!]!
  • # Audio analytics by gender for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • audio_analytics_by_gender(
  • input: AudioAnalyticsByGenderCursorInput
  • ): [AudioAnalyticsByGender!]!
  • # Audio analytics by source for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • audio_analytics_by_source(
  • input: AudioAnalyticsBySourceCursorInput
  • ): [AudioAnalyticsBySource!]!
  • # Number of audio analytics for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • audio_analytics_count(input: AudioAnalyticsCursorInput): Int!
  • # Balance available to withdraw of a user
  • available_balance: Float! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # List of networks available for a user
  • #
  • # Arguments
  • # type: [Not documented]
  • # music_video_type: [Not documented]
  • available_networks(
  • type: NetworkType,
  • music_video_type: SupportedVideo
  • ): [Network!]!
  • # List of storage tiers available for a user
  • #
  • # Arguments
  • # limit: [Not documented]
  • available_storage_tiers(limit: Int!): [StorageTier!]!
  • # Information about whether or not a month has any balance_adjustments
  • #
  • # Arguments
  • # input: [Not documented]
  • balance_activity_months(
  • input: BalanceActivityMonthsCursorInput
  • ): [MonthHasData!]!
  • # Summaries of all balance adjustments that occurred on specific dates
  • #
  • # Arguments
  • # input: [Not documented]
  • balance_history_date_summaries(
  • input: BalanceHistoryDateSummariesCursorInput
  • ): [BalanceHistoryDateSummary!]!
  • # Count of all summaries of balance adjustments that occurred on specific dates
  • #
  • # Arguments
  • # input: [Not documented]
  • balance_history_date_summaries_count(
  • input: BalanceHistoryDateSummariesCursorInput
  • ): Int!
  • # The networks the user has made revenue from
  • #
  • # Arguments
  • # audio: [Not documented]
  • balance_networks(audio: Boolean): [Network!]!
  • # The range of balance adjustments for a user
  • balance_range: [DateTime!]
  • # Token for payments processed to braintree
  • braintree_client_token: String!
  • # Any more cash advance recoupments for user
  • #
  • # Arguments
  • # input: [Not documented]
  • cash_advance_recoupments_any_more_results(
  • input: CashAdvanceRecoupmentsCursorInput
  • ): Boolean!
  • # Number of cash advance recoupments for user
  • #
  • # Arguments
  • # input: [Not documented]
  • cash_advance_recoupments_count(
  • input: CashAdvanceRecoupmentsCursorInput
  • ): Int!
  • # Cash advance recoupments for user
  • #
  • # Arguments
  • # input: [Not documented]
  • cash_advance_recoupments_cursor(
  • input: CashAdvanceRecoupmentsCursorInput
  • ): [CashAdvanceRecoupment!]!
  • # User accounts that are charitably
  • charitable_users: [User!]!
  • # Is a charitable user
  • charity: Boolean!
  • # The name of the charity
  • charity_name: String!
  • # Revenue generated or this user
  • client_revenue: Float! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # client_revenue using materialized views and only including locked-in revenue
  • # (not including pending revenue)
  • client_revenue_royalty_center: Float!
  • # List out all Composers for the current user
  • #
  • # Arguments
  • # input: [Not documented]
  • composers(input: ComposersCursorInput): [Composer!]!
  • # CLA issued for a user
  • content_license_agreement: Agreement @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # User's country code if one is present
  • country_code: String
  • # When the user created their profile
  • created_at: DateTime!
  • # List of credit cards
  • credit_cards: [PaymentMethodCreditCard!]!
  • csrf_token: String! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • current_storage_usage: Float!
  • current_tier: Int @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # reasons for delete data request
  • delete_data: [String!]!
  • # reasons for delete account request
  • delete_request_reasons: [String!]! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # The device being used
  • device_type: String!
  • display_name_or_email: String!
  • eligible_for_nps: Boolean! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Email Address for a user
  • email: String!
  • email_confirmation_token: String! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • email_confirmation_token_created_at: DateTime! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # Flag for the email is confirmed
  • email_confirmed: Boolean!
  • # Flag for a user exceeded their storage limit.
  • exceeded_storage_limit: Boolean!
  • # A custom external url for this User.
  • external_url: String
  • # user's enabled features
  • features: [String!]!
  • # First artist in the order of creation
  • first_artist: Artist @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • first_name: String
  • # Whether or not the user is free monetize
  • free_monetize: Boolean! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • full_name: String
  • full_name_or_email: String!
  • # Is the user's account in good standing with Vydia
  • good_standing: Boolean!
  • # User has an active cash advance recoupment
  • has_active_recoupment: Boolean!
  • # Has analytics for specified network name
  • #
  • # Arguments
  • # network_name: [Not documented]
  • # user_id: [Not documented]
  • has_analytics_for_network(
  • network_name: AudioAnalyticsNetworks,
  • user_id: ID
  • ): Boolean!
  • # Flag for a user has any feature at all
  • #
  • # Arguments
  • # features: [Not documented]
  • has_any_feature(features: [Features!]!): Boolean!
  • # Has analytics for v2 audio analytics screen
  • #
  • # Arguments
  • # artist_id: [Not documented]
  • # media_id: [Not documented]
  • # user_id: [Not documented]
  • has_audio_analytics(artist_id: ID, media_id: ID, user_id: ID): Boolean!
  • # Flag for a user has a feature
  • #
  • # Arguments
  • # feature: [Not documented]
  • has_feature(feature: Features!): Boolean!
  • # Should client receive the payments? or the organization
  • has_label_revenue: Boolean!
  • # Flag for a user has a password
  • has_password: Boolean! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # If the user has received any archived payee asset splits
  • has_received_archived_payee_asset_split: Boolean!
  • # Has royalty_center_payee or royalty_center_payor feature
  • has_royalty_center: Boolean!
  • # Flag for a user has seen a feature
  • #
  • # Arguments
  • # feature: [Not documented]
  • # timestamp: [Not documented]
  • has_seen_feature(feature: Features!, timestamp: DateTime): Boolean!
  • # Whether or not the user has ever signed an agreement OR Whether or not a user
  • # has signed a specific agreement by type
  • #
  • # Arguments
  • # type: [Not documented]
  • has_signed_agreement(type: AgreementType): Boolean!
  • # If the user has signed the latest terms and conditions
  • has_signed_terms_and_conditions: Boolean!
  • # Whether or not the user has ever signed a universal cla
  • has_signed_ucla: Boolean! @deprecated( reason: "WARNING: field deprecated use `User.has_signed_agreement` with a type argument instead" )
  • id: ID!
  • # Image url for the user's avatar(s)
  • image_url: String
  • instagram_business_account_learn_more_uri: String!
  • is_admin: Boolean!
  • # Whether the user belongs to a Agency or not
  • is_agency_user: Boolean! @deprecated( reason: "We now use the term 'label' instead of agency" )
  • # Flag for the user is banned
  • is_banned: Boolean! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Whether the user belongs to a Label or not
  • is_label_user: Boolean! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # Flag for a user is organization admin
  • is_organization_admin: Boolean!
  • # Is over their storage plan artist limit
  • is_over_artist_limit: Boolean!
  • # User has a paid storage tier or is free monetize
  • is_paid_storage_user: Boolean!
  • # User has been onboarded to tipalti
  • is_payable: Boolean!
  • is_publisher: Boolean! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # Flag for a user is super_user
  • is_super: Boolean!
  • is_whitelabel: Boolean!
  • # Default path a user will enter when signing in
  • landing_path: String
  • # Whether or not the user is free monetize
  • last_logged_in_at: DateTime @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • last_name: String
  • last_terms_signed_at: DateTime @deprecated( reason: "Latest Date when the T&C was signed" )
  • # ip address that user has logged into the platform from
  • last_used_ip_address: String
  • # user agent that user has logged into the platform from
  • last_used_user_agent: String
  • lifetime_tier: Int @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # List out all the medias for a user
  • #
  • # Arguments
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # sort_by: [Not documented]
  • # sort_order: [Not documented]
  • # search_term: [Not documented]
  • # supports_release: [Not documented]
  • # with_file_upload: [Not documented]
  • # unprotected: [Not documented]
  • # generator: [Not documented]
  • # category: [Not documented]
  • # ids: [Not documented]
  • # shared_with_me: [Not documented]
  • # shared_with_me_enum: [Not documented]
  • # audio_type: [Not documented]
  • # with_sound_recording_rights: [Not documented]
  • # can_be_split: [Not documented]
  • # all_medias: [Not documented]
  • # archived: [Not documented]
  • # artist_archived: [Not documented]
  • # include_organization_medias: [Not documented]
  • # include_admins: [Not documented]
  • medias_cursor(
  • offset: Int,
  • limit: Int,
  • sort_by: String,
  • sort_order: String,
  • search_term: String,
  • supports_release: Boolean,
  • with_file_upload: Boolean,
  • unprotected: Boolean,
  • generator: Generator,
  • category: String,
  • ids: [ID!],
  • shared_with_me: Boolean,
  • shared_with_me_enum: MediaSharedWithMe,
  • audio_type: Boolean,
  • with_sound_recording_rights: Boolean,
  • can_be_split: Boolean,
  • all_medias: Boolean,
  • archived: Boolean,
  • artist_archived: Boolean,
  • include_organization_medias: Boolean,
  • include_admins: Boolean
  • ): Medias! @deprecated( reason: "Use flattened medias_v2 field instead." )
  • # Medias of the user
  • #
  • # Arguments
  • # input: [Not documented]
  • medias_v2(input: MediasV2CursorInput): [Media!]!
  • # Any more results of medias
  • #
  • # Arguments
  • # input: [Not documented]
  • medias_v2_any_more_results(
  • input: MediasV2CursorInput
  • ): Boolean!
  • # Count of medias
  • #
  • # Arguments
  • # input: [Not documented]
  • medias_v2_count(input: MediasV2CursorInput): Int!
  • # List of territories that all medias have sound recording rights in
  • #
  • # Arguments
  • # input: [Not documented]
  • medias_v2_sr_territories_intersection(
  • input: MediasV2CursorInput
  • ): [Territory!]!
  • # Whether or not the user must enable mfa
  • mfa_required: Boolean!
  • # Month Revenue for Networks
  • #
  • # Arguments
  • # input: [Not documented]
  • monthly_network_revenues(
  • input: MonthlyNetworkRevenuesCursorInput
  • ): [MonthlyNetworkRevenue!]!
  • # Use this field instead of `last_terms_signed_at` to check if a user needs to
  • # sign terms because we may update the backend logic and this field will be
  • # compatible with the new logic.
  • must_agree_new_terms: Boolean!
  • # Flag for a user must contact support, set when the user is locked
  • must_contact_support: Boolean! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Whether or not the user need to sign a new universal cla
  • must_sign_ucla: Boolean!
  • # User's native country code if one is present
  • native_country_code: CountryCode
  • # revenue for networks
  • #
  • # Arguments
  • # input: [Not documented]
  • network_revenues(input: NetworkRevenuesCursorInput): [NetworkRevenue!]!
  • # next StorageTier from the available storage tiers
  • next_required_storage_tier: StorageTier
  • # 100
  • notifications_async_threshold_min: Int! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • one_time_login_token: String! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • one_time_login_token_created_at: DateTime @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # An Organization a user is a member of
  • organization: Organization
  • organization_royalty_split: Float
  • # The qr code for the user
  • otp_authenticator_qr_code: String!
  • # Whether or not the user's OTP has expired
  • otp_expired: Boolean!
  • # Whether or not the user has turned on OTP mfa
  • otp_mfa: Boolean!
  • # Whether user skipped OTP verification or not
  • otp_verification_skipped_at: DateTime
  • # Get payee invite by id
  • #
  • # Arguments
  • # id: [Not documented]
  • payee_invite(id: ID!): PayeeInvite
  • # List out all the PayeeInvites for a User
  • #
  • # Arguments
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # payee_ids: [Not documented]
  • # role: [Not documented]
  • # sort_order: [Not documented]
  • # sort_by: [Not documented]
  • # search_term: [Not documented]
  • # status: [Not documented]
  • # ids: [Not documented]
  • # include_archived: [Not documented]
  • # archived: [Not documented]
  • # charity: [Not documented]
  • # include_charity: [Not documented]
  • payee_invites_cursor(
  • offset: Int,
  • limit: Int,
  • payee_ids: [ID!],
  • role: RoyaltyCenterRole!,
  • sort_order: SortOrder,
  • sort_by: PayeeInvitesSortBy,
  • search_term: String,
  • status: PayeeAssetSplitStatus,
  • ids: [ID!],
  • include_archived: Boolean,
  • archived: Boolean,
  • charity: Boolean,
  • include_charity: Boolean
  • ): PayeeInvites! @deprecated( reason: "User flattened payee_invites_v2 field instead." )
  • # List out all the PayeeInvites for a User
  • #
  • # Arguments
  • # input: [Not documented]
  • payee_invites_v2(input: PayeeInvitesV2CursorInput): [PayeeInvite!]!
  • # Anymore PayeeInvites for a User
  • #
  • # Arguments
  • # input: [Not documented]
  • payee_invites_v2_any_more_results(
  • input: PayeeInvitesV2CursorInput
  • ): Boolean!
  • # Count of PayeeInvites for a User
  • #
  • # Arguments
  • # input: [Not documented]
  • payee_invites_v2_count(input: PayeeInvitesV2CursorInput): Int!
  • # List out all the Medias that a User is invited to
  • #
  • # Arguments
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # role: [Not documented]
  • # search_term: [Not documented]
  • # status: [Not documented]
  • # payee_invite_id: [Not documented]
  • payee_media_splits_cursor(
  • offset: Int,
  • limit: Int,
  • role: RoyaltyCenterRole!,
  • search_term: String,
  • status: PayeeAssetSplitStatus,
  • payee_invite_id: ID
  • ): PayeeMediaSplits!
  • # Count of payment methods of this user
  • payment_methods_count: Int!
  • # List of Paypal accounts
  • paypal_accounts: [PaymentMethodPaypalAccount!]!
  • phone: String
  • # user's point of contact
  • point_of_contact: User @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • pretty_available_balance: String!
  • pretty_available_balance_inexact: String!
  • pretty_client_revenue: String!
  • # pretty_client_revenue_inexact using materialized views and only including
  • # locked-in revenue (not including pending revenue)
  • pretty_client_revenue_inexact_royalty_center: String!
  • # pretty_client_revenue using materialized views and only including locked-in
  • # revenue (not including pending revenue)
  • pretty_client_revenue_royalty_center: String!
  • # List out all Publishers for the current user
  • #
  • # Arguments
  • # input: [Not documented]
  • publishers(input: PublishersCursorInput): [Publisher!]!
  • push_notif_interest: String! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Earnings for the quarters in the current year
  • #
  • # Arguments
  • # input: [Not documented]
  • quarterly_earnings(input: QuarterlyEarningsCursorInput): [QuarterlyEarnings!]!
  • # Top medias by streams for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • ranked_medias(input: RankedMediasCursorInput): [RankedMedia!]!
  • # Count of top medias for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • ranked_medias_count(input: RankedMediasCursorInput): Int!
  • # List out all Releases for the current user
  • #
  • # Arguments
  • # input: [Not documented]
  • releases_v2(input: ReleasesV2CursorInput): [ReleaseCalendarItem!]
  • # Count of Releases for a user
  • #
  • # Arguments
  • # input: [Not documented]
  • releases_v2_count(input: ReleasesV2CursorInput): Int!
  • remaining_login_attempts: Int!
  • # Returns a rendered html string of RCA, Royalty Center Authorization
  • render_rca: String!
  • # Returns a rendered html string of Terms and Conditions
  • render_terms_and_conditions: String!
  • # Arguments
  • # first_name: [Not documented]
  • # last_name: [Not documented]
  • # entity_name: [Not documented]
  • # address: [Not documented]
  • # address2: [Not documented]
  • # city: [Not documented]
  • # state: [Not documented]
  • # postal: [Not documented]
  • # country: [Not documented]
  • # client_type: [Not documented]
  • # signatory: [Not documented]
  • # signatory_title: [Not documented]
  • render_ucla(
  • first_name: String,
  • last_name: String,
  • entity_name: String,
  • address: String,
  • address2: String,
  • city: String,
  • state: String,
  • postal: String,
  • country: String,
  • client_type: String,
  • signatory: String,
  • signatory_title: String
  • ): String!
  • # When the user requested to delete their account at
  • requested_delete_at: DateTime
  • # The role of this user within the Organization/Label
  • role: UserRole!
  • # Is the user an owner or admin of the organization
  • role_owner_or_admin: Boolean!
  • # list out sales trends for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • sales_trends(input: SalesTrendsInput): [SalesTrend!]
  • # Count of sales trends for an user
  • #
  • # Arguments
  • # input: [Not documented]
  • sales_trends_count(input: SalesTrendsInput): Int!
  • send_secure_login: Boolean!
  • # Has previously signed a CLA or submitted a publishing release
  • show_optional_ucla: Boolean!
  • # List out all the SignedAgreements for a User
  • #
  • # Arguments
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # sort_by: [Not documented]
  • # sort_order: [Not documented]
  • # agreement_types: [Not documented]
  • signed_agreements_cursor(
  • offset: Int,
  • limit: Int,
  • sort_by: SignedAgreementsSortBy,
  • sort_order: SortOrder,
  • agreement_types: [SignedAgreementType!]
  • ): SignedAgreements!
  • # If the user has signed agreements excluding terms and conditions
  • signed_agreements_excluding_terms_and_conditions: [SignedAgreement!]!
  • # The user's signed cla releases
  • signed_cla_releases: [Release!]!
  • # Socials across all of the user's artists that need reconnect
  • socials_needing_reconnect: [Social!]
  • # Flag for the socials are verified
  • socials_verified: Boolean! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Count of all the user's submitted audio releases.
  • submitted_audio_release_count: Float! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # Count of all the user's submitted video releases.
  • submitted_video_release_count: Float! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # url for tipalti registration
  • tipalti_url: String!
  • # Top albums for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_albums(input: TopAlbumsCursorInput): [TopAlbum!]!
  • # Any more top medias in this user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_albums_any_more_results(
  • input: TopAlbumsCursorInput
  • ): Boolean!
  • # Count of top albums for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_albums_count(input: TopAlbumsCursorInput): Int!
  • # Top artists for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_artists(input: TopArtistsCursorInput): [TopArtist!]!
  • # Any more top medias in this user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_artists_any_more_results(
  • input: TopArtistsCursorInput
  • ): Boolean!
  • # Count of top artists for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_artists_count(input: TopArtistsCursorInput): Int!
  • # Top countries for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_geocountries(input: TopGeocountryCursorInput): [TopGeocountry!]!
  • # Any more top medias in this user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_geocountries_any_more_results(
  • input: TopGeocountryCursorInput
  • ): Boolean!
  • # Count of top artists for the user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_geocountries_count(input: TopGeocountryCursorInput): Int!
  • # Top medias by earnings in this user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_medias(input: TopMediasCursorInput): [TopMedia!]!
  • # Any more top medias in this user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_medias_any_more_results(
  • input: TopMediasCursorInput
  • ): Boolean!
  • # Number of top medias in this user
  • #
  • # Arguments
  • # input: [Not documented]
  • top_medias_count(input: TopMediasCursorInput): Int!
  • unread_notifications_count: Int!
  • # Date when VIP Plan was confirmed by a user
  • vip_plan_confirmed_at: DateTime
  • # Youtube OAuth connection url
  • youtube_authentication_url: String!
  • # Arguments
  • # input: [Not documented]
  • youtube_conflict_totals(
  • input: YoutubeConflictsCursorInput
  • ): [YoutubeConflictTotals!]!
  • # Arguments
  • # input: [Not documented]
  • youtube_conflicts(input: YoutubeConflictsCursorInput): [YoutubeConflict!]!
  • # Arguments
  • # input: [Not documented]
  • youtube_conflicts_any_more_results(
  • input: YoutubeConflictsCursorInput
  • ): Boolean!
  • # Arguments
  • # input: [Not documented]
  • youtube_conflicts_count(
  • input: YoutubeConflictsCursorInput
  • ): Int!
  • # When the most recent YouTube Conflicts report was ingested into Vydia's Database
  • #
  • # Arguments
  • # input: [Not documented]
  • youtube_conflicts_latest_reports_ingested_at(
  • input: YoutubeConflictsCursorInput
  • ): DateTime!
  • # Whether or not the user is connected to youtube
  • youtube_connected: Boolean!
  • # Arguments
  • # input: [Not documented]
  • youtube_ugc(input: YoutubeUgcCursorInput): [YoutubeUgc!]!
  • # Arguments
  • # input: [Not documented]
  • youtube_ugc_any_more_results(
  • input: YoutubeUgcCursorInput
  • ): Boolean!
  • # Arguments
  • # input: [Not documented]
  • youtube_ugc_count(input: YoutubeUgcCursorInput): Int!
  • # When the most recent YouTube Ugc report was ingested into Vydia's Database
  • #
  • # Arguments
  • # input: [Not documented]
  • youtube_ugc_latest_reports_ingested_at(
  • input: YoutubeUgcCursorInput
  • ): DateTime!
  • # Arguments
  • # input: [Not documented]
  • youtube_ugc_totals(input: YoutubeUgcCursorInput): [YoutubeUgcTotals!]!
  • }

link Require by