Artists
useAllArtistsQuery(params?: IApiListQueryParams, queryOptions?: UseQueryOptions): {artists: IArtist[], ...UseQueryResult}
usePaginatedArtistsQuery(pageSize? = 20, params?: Pick<IApiListQueryParams, 'filter' | 'orderBy'>, queryOptions?: UseInfiniteQueryOptions): {artists: IArtist[], totalCount: number | null, ...UseInfiniteQueryResult}
useArtistQuery(idOrSlug: string, queryOptions?: UseQueryOptions): {artist: IArtist | null, tracks: ITrack[], ...UseQueryResult}
Last updated