You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current
Me
export type Me = MeQueryInterface & CartQueryInterface & ActiveCartInterface & OrderQueryInterface & ShoppingListQueryInterface & {
__typename?: 'Me';
customer?: Maybe<Customer>;
cart?: Maybe<Cart>;
carts: CartQueryResult;
activeCart?: Maybe<Cart>;
order?: Maybe<Order>;
orders: OrderQueryResult;
shoppingList?: Maybe<ShoppingList>;
shoppingLists: ShoppingListQueryResult;
payment?: Maybe<MyPayment>;
payments: MyPaymentQueryResult;
};