User
Type of a user owning wishlists.
type User {
id: UUID!
wishlists(
first: Int
skip: Int
orderBy: WishlistOrderInput
): WishlistConnection!
}
Fields
User.id ● UUID! non-null scalar
UUID of the user.
User.wishlists ● WishlistConnection! non-null object
Retrieves wishlists of user.
User.wishlists.first●IntscalarDescribes that the
firstN wishlists should be retrieved.
User.wishlists.skip ● Int scalar
Describes how many wishlists should be skipped at the beginning.
User.wishlists.orderBy ● WishlistOrderInput input
Specifies the order in which wishlists are retrieved.
Member Of
Wishlist object
Implemented By
_Entity union