OBJECT
Buyer
link GraphQL Schema definition
1 type Buyer { 2 : Int! 3 4 : Status! 5 6 : String! 7 8 : String 9 10 : String 11 12 : String 13 14 : String 15 16 : String 17 18 # Arguments 19 # format: ISO-8601 20 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz! 21 22 # Arguments 23 # format: ISO-8601 24 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz! 25 26 # Arguments 27 # format: ISO-8601 28 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz 29 30 # Arguments 31 # format: ISO-8601 32 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz 33 34 # Required permission: Buyer.totalOrders:read 35 : Int! 36 37 # Required permission: Buyer.billingAddress:read 38 : Address 39 40 # Required permission: EmailHistory:read 41 # 42 # Limit must be in range 1 - 200 43 # 44 # Arguments 45 # where: (self-explanatory) 46 # sort: (self-explanatory) 47 # limit: (self-explanatory) 48 # page: (self-explanatory) 49 (: EmailHistoryFilter, : [EmailHistorySort!] = [id_DESC], : Int = 20, : Int = 1): [WholesaleEmailHistoryEntry!]! 50 51 # Required permission: Store:read 52 # 53 # Store restrictions apply. 54 : Store! 55 56 : Boolean! 57 58 # Required permission: Account:read 59 # 60 # Store restrictions apply. 61 : Account! 62 63 # Required permission: Order:read 64 # 65 # Store restrictions apply. 66 : WholesaleOrder 67 68 # Required permission: Order:read 69 # 70 # Limit must be in range 1 - 100 71 # 72 # Store restrictions apply. 73 # 74 # Arguments 75 # where: (self-explanatory) 76 # sort: (self-explanatory) 77 # limit: (self-explanatory) 78 # page: (self-explanatory) 79 (: OrderFilter, : [OrderSort!] = [number_DESC], : Int = 20, : Int = 1): [WholesaleOrder!]! 80 81 # Required permission: NewsletterSubscription:read 82 # 83 # All elements are always returned 84 # 85 # Store restrictions apply. 86 : [NewsletterSubscription!]! 87 88 : String 89 90 }