Skip to main content

User

The user object and all of its attributes.

type User {
id: ID!
username: String!
displayName: String
informalName: String
url: Url
top8: List
profileImageUrl: Url
lists(
filters: ListFilters
first: Int = 10
page: Int = 0
searchTerm: String
sort: ListSort
paginationType: PaginationType
cursor: String
): ListList
ratings(
filters: RatingFilters
first: Int = 10
page: Int = 0
searchTerm: String
sort: RatingSort
paginationType: PaginationType
cursor: String
): RatingList
reviews(
filters: ReviewFilters
first: Int = 10
page: Int = 0
searchTerm: String
sort: ReviewSort
paginationType: PaginationType
cursor: String
): ReviewList
following(
entityType: Followable
first: Int = 10
page: Int = 0
): FollowPaginator
}

Fields

id (ID!)

username (String!)

displayName (String)

The name the user has chosen to be displayed on Podchaser.

informalName (String)

The name the user has entered for a more informal conversation. Usually their first name.

url (Url)

The URL for the user's profile on Podchaser

top8 (List)

profileImageUrl (Url)

Only available with certain permissions.

lists (ListList)

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

The offset from which elements are returned.

A search term to filter on.

How to sort the results

Which type of pagination to use

The cursor from which to retrieve the next page of results

ratings (RatingList)

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

The offset from which elements are returned.

A search term to filter on.

How to sort the results

Which type of pagination to use

The cursor from which to retrieve the next page of results

reviews (ReviewList)

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

The offset from which elements are returned.

A search term to filter on.

How to sort the results

Which type of pagination to use

The cursor from which to retrieve the next page of results

following (FollowPaginator)

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

The offset from which items are returned.