< Summary - Jellyfin

Information
Class: Jellyfin.Api.Controllers.ArtistsController
Assembly: Jellyfin.Api
File(s): /srv/git/jellyfin/Jellyfin.Api/Controllers/ArtistsController.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 165
Coverable lines: 165
Total lines: 418
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 18
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100 1/23/2026 - 12:11:06 AM Line coverage: 0% (0/199) Branch coverage: 0% (0/44) Total lines: 4813/14/2026 - 12:13:58 AM Line coverage: 0% (0/165) Branch coverage: 0% (0/18) Total lines: 4174/27/2026 - 12:15:04 AM Line coverage: 0% (0/165) Branch coverage: 0% (0/18) Total lines: 418 1/23/2026 - 12:11:06 AM Line coverage: 0% (0/199) Branch coverage: 0% (0/44) Total lines: 4813/14/2026 - 12:13:58 AM Line coverage: 0% (0/165) Branch coverage: 0% (0/18) Total lines: 4174/27/2026 - 12:15:04 AM Line coverage: 0% (0/165) Branch coverage: 0% (0/18) Total lines: 418

Coverage delta

Coverage delta 1 -1

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%210%
GetArtists(...)0%7280%
GetAlbumArtists(...)0%7280%
GetArtistByName(...)0%620%

File(s)

/srv/git/jellyfin/Jellyfin.Api/Controllers/ArtistsController.cs

#LineLine coverage
 1using System;
 2using System.ComponentModel.DataAnnotations;
 3using System.Linq;
 4using Jellyfin.Api.Extensions;
 5using Jellyfin.Api.Helpers;
 6using Jellyfin.Api.ModelBinders;
 7using Jellyfin.Data.Enums;
 8using Jellyfin.Database.Implementations.Entities;
 9using Jellyfin.Database.Implementations.Enums;
 10using Jellyfin.Extensions;
 11using MediaBrowser.Controller.Dto;
 12using MediaBrowser.Controller.Entities;
 13using MediaBrowser.Controller.Library;
 14using MediaBrowser.Model.Dto;
 15using MediaBrowser.Model.Entities;
 16using MediaBrowser.Model.Querying;
 17using Microsoft.AspNetCore.Authorization;
 18using Microsoft.AspNetCore.Http;
 19using Microsoft.AspNetCore.Mvc;
 20
 21namespace Jellyfin.Api.Controllers;
 22
 23/// <summary>
 24/// The artists controller.
 25/// </summary>
 26[Route("Artists")]
 27[Authorize]
 28[Tags("Artist")]
 29public class ArtistsController : BaseJellyfinApiController
 30{
 31    private readonly ILibraryManager _libraryManager;
 32    private readonly IUserManager _userManager;
 33    private readonly IDtoService _dtoService;
 34
 35    /// <summary>
 36    /// Initializes a new instance of the <see cref="ArtistsController"/> class.
 37    /// </summary>
 38    /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
 39    /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
 40    /// <param name="dtoService">Instance of the <see cref="IDtoService"/> interface.</param>
 041    public ArtistsController(
 042        ILibraryManager libraryManager,
 043        IUserManager userManager,
 044        IDtoService dtoService)
 45    {
 046        _libraryManager = libraryManager;
 047        _userManager = userManager;
 048        _dtoService = dtoService;
 049    }
 50
 51    /// <summary>
 52    /// Gets all artists from a given item, folder, or the entire library.
 53    /// </summary>
 54    /// <param name="minCommunityRating">Optional filter by minimum community rating.</param>
 55    /// <param name="startIndex">Optional. The record index to start at. All items with a lower index will be dropped fr
 56    /// <param name="limit">Optional. The maximum number of records to return.</param>
 57    /// <param name="searchTerm">Optional. Search term.</param>
 58    /// <param name="parentId">Specify this to localize the search to a specific item or folder. Omit to use the root.</
 59    /// <param name="fields">Optional. Specify additional fields of information to return in the output.</param>
 60    /// <param name="excludeItemTypes">Optional. If specified, results will be filtered out based on item type. This all
 61    /// <param name="includeItemTypes">Optional. If specified, results will be filtered based on item type. This allows 
 62    /// <param name="filters">Optional. Specify additional filters to apply.</param>
 63    /// <param name="isFavorite">Optional filter by items that are marked as favorite, or not.</param>
 64    /// <param name="mediaTypes">Optional filter by MediaType. Allows multiple, comma delimited.</param>
 65    /// <param name="genres">Optional. If specified, results will be filtered based on genre. This allows multiple, pipe
 66    /// <param name="genreIds">Optional. If specified, results will be filtered based on genre id. This allows multiple,
 67    /// <param name="officialRatings">Optional. If specified, results will be filtered based on OfficialRating. This all
 68    /// <param name="tags">Optional. If specified, results will be filtered based on tag. This allows multiple, pipe del
 69    /// <param name="years">Optional. If specified, results will be filtered based on production year. This allows multi
 70    /// <param name="enableUserData">Optional, include user data.</param>
 71    /// <param name="imageTypeLimit">Optional, the max number of images to return, per image type.</param>
 72    /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
 73    /// <param name="person">Optional. If specified, results will be filtered to include only those containing the speci
 74    /// <param name="personIds">Optional. If specified, results will be filtered to include only those containing the sp
 75    /// <param name="personTypes">Optional. If specified, along with Person, results will be filtered to include only th
 76    /// <param name="studios">Optional. If specified, results will be filtered based on studio. This allows multiple, pi
 77    /// <param name="studioIds">Optional. If specified, results will be filtered based on studio id. This allows multipl
 78    /// <param name="userId">User id.</param>
 79    /// <param name="nameStartsWithOrGreater">Optional filter by items whose name is sorted equally or greater than a gi
 80    /// <param name="nameStartsWith">Optional filter by items whose name is sorted equally than a given input string.</p
 81    /// <param name="nameLessThan">Optional filter by items whose name is equally or lesser than a given input string.</
 82    /// <param name="sortBy">Optional. Specify one or more sort orders, comma delimited.</param>
 83    /// <param name="sortOrder">Sort Order - Ascending,Descending.</param>
 84    /// <param name="enableImages">Optional, include image information in output.</param>
 85    /// <param name="enableTotalRecordCount">Total record count.</param>
 86    /// <response code="200">Artists returned.</response>
 87    /// <returns>An <see cref="OkResult"/> containing the artists.</returns>
 88    [HttpGet]
 89    [ProducesResponseType(StatusCodes.Status200OK)]
 90    public ActionResult<QueryResult<BaseItemDto>> GetArtists(
 91        [FromQuery] double? minCommunityRating,
 92        [FromQuery] int? startIndex,
 93        [FromQuery] int? limit,
 94        [FromQuery] string? searchTerm,
 95        [FromQuery] Guid? parentId,
 96        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFields[] fields,
 97        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] excludeItemTypes,
 98        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] includeItemTypes,
 99        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFilter[] filters,
 100        [FromQuery] bool? isFavorite,
 101        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] MediaType[] mediaTypes,
 102        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] genres,
 103        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] genreIds,
 104        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] officialRatings,
 105        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] tags,
 106        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] int[] years,
 107        [FromQuery] bool? enableUserData,
 108        [FromQuery] int? imageTypeLimit,
 109        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ImageType[] enableImageTypes,
 110        [FromQuery] string? person,
 111        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] personIds,
 112        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] string[] personTypes,
 113        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] studios,
 114        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] studioIds,
 115        [FromQuery] Guid? userId,
 116        [FromQuery] string? nameStartsWithOrGreater,
 117        [FromQuery] string? nameStartsWith,
 118        [FromQuery] string? nameLessThan,
 119        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemSortBy[] sortBy,
 120        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] SortOrder[] sortOrder,
 121        [FromQuery] bool? enableImages = true,
 122        [FromQuery] bool enableTotalRecordCount = true)
 123    {
 0124        userId = RequestHelpers.GetUserId(User, userId);
 0125        var dtoOptions = new DtoOptions { Fields = fields }
 0126            .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes);
 127
 0128        User? user = null;
 0129        BaseItem parentItem = _libraryManager.GetParentItem(parentId, userId);
 130
 0131        if (!userId.IsNullOrEmpty())
 132        {
 0133            user = _userManager.GetUserById(userId.Value);
 134        }
 135
 0136        var query = new InternalItemsQuery(user)
 0137        {
 0138            ExcludeItemTypes = excludeItemTypes,
 0139            IncludeItemTypes = includeItemTypes,
 0140            MediaTypes = mediaTypes,
 0141            StartIndex = startIndex,
 0142            Limit = limit,
 0143            IsFavorite = isFavorite,
 0144            NameLessThan = nameLessThan,
 0145            NameStartsWith = nameStartsWith,
 0146            NameStartsWithOrGreater = nameStartsWithOrGreater,
 0147            Tags = tags,
 0148            OfficialRatings = officialRatings,
 0149            Genres = genres,
 0150            GenreIds = genreIds,
 0151            StudioIds = studioIds,
 0152            Person = person,
 0153            PersonIds = personIds,
 0154            PersonTypes = personTypes,
 0155            Years = years,
 0156            MinCommunityRating = minCommunityRating,
 0157            DtoOptions = dtoOptions,
 0158            SearchTerm = searchTerm,
 0159            EnableTotalRecordCount = enableTotalRecordCount,
 0160            OrderBy = RequestHelpers.GetOrderBy(sortBy, sortOrder)
 0161        };
 162
 0163        if (parentId.HasValue)
 164        {
 0165            if (parentItem is Folder)
 166            {
 0167                query.AncestorIds = new[] { parentId.Value };
 168            }
 169            else
 170            {
 0171                query.ItemIds = new[] { parentId.Value };
 172            }
 173        }
 174
 175        // Studios
 0176        if (studios.Length != 0)
 177        {
 0178            query.StudioIds = studios.Select(i =>
 0179            {
 0180                try
 0181                {
 0182                    return _libraryManager.GetStudio(i);
 0183                }
 0184                catch
 0185                {
 0186                    return null;
 0187                }
 0188            }).Where(i => i is not null).Select(i => i!.Id).ToArray();
 189        }
 190
 0191        query.ApplyFilters(filters);
 192
 0193        var result = _libraryManager.GetArtists(query);
 194
 0195        var dtos = result.Items.Select(i =>
 0196        {
 0197            var (baseItem, itemCounts) = i;
 0198            var dto = _dtoService.GetItemByNameDto(baseItem, dtoOptions, null, user);
 0199
 0200            if (includeItemTypes.Length != 0)
 0201            {
 0202                dto.ChildCount = itemCounts.ItemCount;
 0203                dto.ProgramCount = itemCounts.ProgramCount;
 0204                dto.SeriesCount = itemCounts.SeriesCount;
 0205                dto.EpisodeCount = itemCounts.EpisodeCount;
 0206                dto.MovieCount = itemCounts.MovieCount;
 0207                dto.TrailerCount = itemCounts.TrailerCount;
 0208                dto.AlbumCount = itemCounts.AlbumCount;
 0209                dto.SongCount = itemCounts.SongCount;
 0210                dto.ArtistCount = itemCounts.ArtistCount;
 0211            }
 0212
 0213            return dto;
 0214        });
 215
 0216        return new QueryResult<BaseItemDto>(
 0217            query.StartIndex,
 0218            result.TotalRecordCount,
 0219            dtos.ToArray());
 220    }
 221
 222    /// <summary>
 223    /// Gets all album artists from a given item, folder, or the entire library.
 224    /// </summary>
 225    /// <param name="minCommunityRating">Optional filter by minimum community rating.</param>
 226    /// <param name="startIndex">Optional. The record index to start at. All items with a lower index will be dropped fr
 227    /// <param name="limit">Optional. The maximum number of records to return.</param>
 228    /// <param name="searchTerm">Optional. Search term.</param>
 229    /// <param name="parentId">Specify this to localize the search to a specific item or folder. Omit to use the root.</
 230    /// <param name="fields">Optional. Specify additional fields of information to return in the output.</param>
 231    /// <param name="excludeItemTypes">Optional. If specified, results will be filtered out based on item type. This all
 232    /// <param name="includeItemTypes">Optional. If specified, results will be filtered based on item type. This allows 
 233    /// <param name="filters">Optional. Specify additional filters to apply.</param>
 234    /// <param name="isFavorite">Optional filter by items that are marked as favorite, or not.</param>
 235    /// <param name="mediaTypes">Optional filter by MediaType. Allows multiple, comma delimited.</param>
 236    /// <param name="genres">Optional. If specified, results will be filtered based on genre. This allows multiple, pipe
 237    /// <param name="genreIds">Optional. If specified, results will be filtered based on genre id. This allows multiple,
 238    /// <param name="officialRatings">Optional. If specified, results will be filtered based on OfficialRating. This all
 239    /// <param name="tags">Optional. If specified, results will be filtered based on tag. This allows multiple, pipe del
 240    /// <param name="years">Optional. If specified, results will be filtered based on production year. This allows multi
 241    /// <param name="enableUserData">Optional, include user data.</param>
 242    /// <param name="imageTypeLimit">Optional, the max number of images to return, per image type.</param>
 243    /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
 244    /// <param name="person">Optional. If specified, results will be filtered to include only those containing the speci
 245    /// <param name="personIds">Optional. If specified, results will be filtered to include only those containing the sp
 246    /// <param name="personTypes">Optional. If specified, along with Person, results will be filtered to include only th
 247    /// <param name="studios">Optional. If specified, results will be filtered based on studio. This allows multiple, pi
 248    /// <param name="studioIds">Optional. If specified, results will be filtered based on studio id. This allows multipl
 249    /// <param name="userId">User id.</param>
 250    /// <param name="nameStartsWithOrGreater">Optional filter by items whose name is sorted equally or greater than a gi
 251    /// <param name="nameStartsWith">Optional filter by items whose name is sorted equally than a given input string.</p
 252    /// <param name="nameLessThan">Optional filter by items whose name is equally or lesser than a given input string.</
 253    /// <param name="sortBy">Optional. Specify one or more sort orders, comma delimited.</param>
 254    /// <param name="sortOrder">Sort Order - Ascending,Descending.</param>
 255    /// <param name="enableImages">Optional, include image information in output.</param>
 256    /// <param name="enableTotalRecordCount">Total record count.</param>
 257    /// <response code="200">Album artists returned.</response>
 258    /// <returns>An <see cref="OkResult"/> containing the album artists.</returns>
 259    [HttpGet("AlbumArtists")]
 260    [ProducesResponseType(StatusCodes.Status200OK)]
 261    public ActionResult<QueryResult<BaseItemDto>> GetAlbumArtists(
 262        [FromQuery] double? minCommunityRating,
 263        [FromQuery] int? startIndex,
 264        [FromQuery] int? limit,
 265        [FromQuery] string? searchTerm,
 266        [FromQuery] Guid? parentId,
 267        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFields[] fields,
 268        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] excludeItemTypes,
 269        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] includeItemTypes,
 270        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFilter[] filters,
 271        [FromQuery] bool? isFavorite,
 272        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] MediaType[] mediaTypes,
 273        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] genres,
 274        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] genreIds,
 275        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] officialRatings,
 276        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] tags,
 277        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] int[] years,
 278        [FromQuery] bool? enableUserData,
 279        [FromQuery] int? imageTypeLimit,
 280        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ImageType[] enableImageTypes,
 281        [FromQuery] string? person,
 282        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] personIds,
 283        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] string[] personTypes,
 284        [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] studios,
 285        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] studioIds,
 286        [FromQuery] Guid? userId,
 287        [FromQuery] string? nameStartsWithOrGreater,
 288        [FromQuery] string? nameStartsWith,
 289        [FromQuery] string? nameLessThan,
 290        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemSortBy[] sortBy,
 291        [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] SortOrder[] sortOrder,
 292        [FromQuery] bool? enableImages = true,
 293        [FromQuery] bool enableTotalRecordCount = true)
 294    {
 0295        userId = RequestHelpers.GetUserId(User, userId);
 0296        var dtoOptions = new DtoOptions { Fields = fields }
 0297            .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes);
 298
 0299        User? user = null;
 0300        BaseItem parentItem = _libraryManager.GetParentItem(parentId, userId);
 301
 0302        if (!userId.IsNullOrEmpty())
 303        {
 0304            user = _userManager.GetUserById(userId.Value);
 305        }
 306
 0307        var query = new InternalItemsQuery(user)
 0308        {
 0309            ExcludeItemTypes = excludeItemTypes,
 0310            IncludeItemTypes = includeItemTypes,
 0311            MediaTypes = mediaTypes,
 0312            StartIndex = startIndex,
 0313            Limit = limit,
 0314            IsFavorite = isFavorite,
 0315            NameLessThan = nameLessThan,
 0316            NameStartsWith = nameStartsWith,
 0317            NameStartsWithOrGreater = nameStartsWithOrGreater,
 0318            Tags = tags,
 0319            OfficialRatings = officialRatings,
 0320            Genres = genres,
 0321            GenreIds = genreIds,
 0322            StudioIds = studioIds,
 0323            Person = person,
 0324            PersonIds = personIds,
 0325            PersonTypes = personTypes,
 0326            Years = years,
 0327            MinCommunityRating = minCommunityRating,
 0328            DtoOptions = dtoOptions,
 0329            SearchTerm = searchTerm,
 0330            EnableTotalRecordCount = enableTotalRecordCount,
 0331            OrderBy = RequestHelpers.GetOrderBy(sortBy, sortOrder)
 0332        };
 333
 0334        if (parentId.HasValue)
 335        {
 0336            if (parentItem is Folder)
 337            {
 0338                query.AncestorIds = new[] { parentId.Value };
 339            }
 340            else
 341            {
 0342                query.ItemIds = new[] { parentId.Value };
 343            }
 344        }
 345
 346        // Studios
 0347        if (studios.Length != 0)
 348        {
 0349            query.StudioIds = studios.Select(i =>
 0350            {
 0351                try
 0352                {
 0353                    return _libraryManager.GetStudio(i);
 0354                }
 0355                catch
 0356                {
 0357                    return null;
 0358                }
 0359            }).Where(i => i is not null).Select(i => i!.Id).ToArray();
 360        }
 361
 0362        query.ApplyFilters(filters);
 363
 0364        var result = _libraryManager.GetAlbumArtists(query);
 365
 0366        var dtos = result.Items.Select(i =>
 0367        {
 0368            var (baseItem, itemCounts) = i;
 0369            var dto = _dtoService.GetItemByNameDto(baseItem, dtoOptions, null, user);
 0370
 0371            if (includeItemTypes.Length != 0)
 0372            {
 0373                dto.ChildCount = itemCounts.ItemCount;
 0374                dto.ProgramCount = itemCounts.ProgramCount;
 0375                dto.SeriesCount = itemCounts.SeriesCount;
 0376                dto.EpisodeCount = itemCounts.EpisodeCount;
 0377                dto.MovieCount = itemCounts.MovieCount;
 0378                dto.TrailerCount = itemCounts.TrailerCount;
 0379                dto.AlbumCount = itemCounts.AlbumCount;
 0380                dto.SongCount = itemCounts.SongCount;
 0381                dto.ArtistCount = itemCounts.ArtistCount;
 0382            }
 0383
 0384            return dto;
 0385        });
 386
 0387        return new QueryResult<BaseItemDto>(
 0388            query.StartIndex,
 0389            result.TotalRecordCount,
 0390            dtos.ToArray());
 391    }
 392
 393    /// <summary>
 394    /// Gets an artist by name.
 395    /// </summary>
 396    /// <param name="name">Studio name.</param>
 397    /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
 398    /// <response code="200">Artist returned.</response>
 399    /// <returns>An <see cref="OkResult"/> containing the artist.</returns>
 400    [HttpGet("{name}")]
 401    [ProducesResponseType(StatusCodes.Status200OK)]
 402    public ActionResult<BaseItemDto> GetArtistByName([FromRoute, Required] string name, [FromQuery] Guid? userId)
 403    {
 0404        userId = RequestHelpers.GetUserId(User, userId);
 0405        var dtoOptions = new DtoOptions();
 406
 0407        var item = _libraryManager.GetArtist(name, dtoOptions);
 408
 0409        if (!userId.IsNullOrEmpty())
 410        {
 0411            var user = _userManager.GetUserById(userId.Value);
 412
 0413            return _dtoService.GetBaseItemDto(item, dtoOptions, user);
 414        }
 415
 0416        return _dtoService.GetBaseItemDto(item, dtoOptions);
 417    }
 418}

Methods/Properties

.ctor(MediaBrowser.Controller.Library.ILibraryManager,MediaBrowser.Controller.Library.IUserManager,MediaBrowser.Controller.Dto.IDtoService)
GetArtists(System.Nullable`1<System.Double>,System.Nullable`1<System.Int32>,System.Nullable`1<System.Int32>,System.String,System.Nullable`1<System.Guid>,MediaBrowser.Model.Querying.ItemFields[],Jellyfin.Data.Enums.BaseItemKind[],Jellyfin.Data.Enums.BaseItemKind[],MediaBrowser.Model.Querying.ItemFilter[],System.Nullable`1<System.Boolean>,Jellyfin.Data.Enums.MediaType[],System.String[],System.Guid[],System.String[],System.String[],System.Int32[],System.Nullable`1<System.Boolean>,System.Nullable`1<System.Int32>,MediaBrowser.Model.Entities.ImageType[],System.String,System.Guid[],System.String[],System.String[],System.Guid[],System.Nullable`1<System.Guid>,System.String,System.String,System.String,Jellyfin.Data.Enums.ItemSortBy[],Jellyfin.Database.Implementations.Enums.SortOrder[],System.Nullable`1<System.Boolean>,System.Boolean)
GetAlbumArtists(System.Nullable`1<System.Double>,System.Nullable`1<System.Int32>,System.Nullable`1<System.Int32>,System.String,System.Nullable`1<System.Guid>,MediaBrowser.Model.Querying.ItemFields[],Jellyfin.Data.Enums.BaseItemKind[],Jellyfin.Data.Enums.BaseItemKind[],MediaBrowser.Model.Querying.ItemFilter[],System.Nullable`1<System.Boolean>,Jellyfin.Data.Enums.MediaType[],System.String[],System.Guid[],System.String[],System.String[],System.Int32[],System.Nullable`1<System.Boolean>,System.Nullable`1<System.Int32>,MediaBrowser.Model.Entities.ImageType[],System.String,System.Guid[],System.String[],System.String[],System.Guid[],System.Nullable`1<System.Guid>,System.String,System.String,System.String,Jellyfin.Data.Enums.ItemSortBy[],Jellyfin.Database.Implementations.Enums.SortOrder[],System.Nullable`1<System.Boolean>,System.Boolean)
GetArtistByName(System.String,System.Nullable`1<System.Guid>)