Skip to main content

List

A user list which can contain podcasts, episodes, headers, and notes.

type List {
id: ID!
title: String!
description: String
privacy: ListPrivacy!
url: Url
followerCount: Int
likeCount: Int
updatedAt: DateTime
createdAt: DateTime
owners(first: Int = 10, page: Int = 0): UserPaginator
items(first: Int = 10, page: Int = 0): ListItemPaginator
}

Fields

id (ID!)

title (String!)

The name of the list.

description (String)

The description added by the user.

privacy (ListPrivacy!)

What privacy setting the user selected for the list.

url (Url)

The URL for the list on Podchaser

followerCount (Int)

The number of users who follow the list.

likeCount (Int)

The number of likes the list has received from users.

updatedAt (DateTime)

createdAt (DateTime)

owners (UserPaginator)

The user(s) who can edit the list.

Limits number of fetched items. Maximum allowed value: 100.

The offset from which elements are returned.

items (ListItemPaginator)

The contents of the list.

Limits number of fetched items. Maximum allowed value: 100.

The offset from which elements are returned.