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
●Int
scalarDescribes that the
first
N 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