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