OBJECT
Customer
link GraphQL Schema definition
1 type Customer implements Purchaser, ObjectWithAttributes { 2 Int! : 3 4 Status! : 5 6 String! : 7 8 String : 9 10 String : 11 12 String : 13 14 String : 15 16 # Arguments 17 # format: ISO-8601 18 String = "Y-m-d\\TH:i:sP"): String! ( : 19 20 # Arguments 21 # format: ISO-8601 22 String = "Y-m-d\\TH:i:sP"): String! ( : 23 24 # Arguments 25 # format: ISO-8601 26 String = "Y-m-d\\TH:i:sP"): String ( : 27 28 # Arguments 29 # format: ISO-8601 30 String = "Y-m-d\\TH:i:sP"): String ( : 31 32 # Required permission: Purchaser.totalOrders:read 33 Int! : 34 35 # Required permission: Purchaser.billingAddress:read 36 Address : 37 38 # Required permission: EmailHistory:read 39 # 40 # Limit must be in range 1 - 200 41 # 42 # Arguments 43 # where: (self-explanatory) 44 # sort: (self-explanatory) 45 # limit: (self-explanatory) 46 # page: (self-explanatory) 47 ( 48 EmailHistoryFilter, : 49 EmailHistorySort!] = [id_DESC], : [ 50 Int = 20, : 51 Int = 1 : 52 ): [EmailHistoryEntry!]! 53 54 # Required permission: Store:read 55 # 56 # Store restrictions apply. 57 Store! : 58 59 # Arguments 60 # format: ISO-8601 61 String = "Y-m-d\\TH:i:sP"): String ( : 62 63 Boolean! : 64 65 Boolean! : 66 67 String : 68 69 String : 70 71 Gender : 72 73 # Required permission: Purchaser.attributes:read 74 # 75 # All elements are always returned 76 Attribute!]! : [ 77 78 # Required permission: none 79 Language : 80 81 # Required permission: Order:read 82 # 83 # Store restrictions apply. 84 DirectToConsumerOrder : 85 86 # Required permission: Market:read 87 # 88 # Store restrictions apply. 89 Market : 90 91 # Required permission: NewsletterSubscription:read 92 # 93 # All elements are always returned 94 # 95 # Store restrictions apply. 96 NewsletterSubscription!]! : [ 97 98 # Required permission: Order:read 99 # 100 # Limit must be in range 1 - 100 101 # 102 # Store restrictions apply. 103 # 104 # Arguments 105 # where: (self-explanatory) 106 # sort: (self-explanatory) 107 # limit: (self-explanatory) 108 # page: (self-explanatory) 109 OrderFilter, : [OrderSort!] = [number_DESC], : Int = 20, : Int = 1): [DirectToConsumerOrder!]! ( : 110 111 # Required permission: Pricelist:read 112 # 113 # Store restrictions apply. 114 Pricelist : 115 116 # Required permission: Return:read 117 # 118 # Limit must be in range 1 - 100 119 # 120 # Store restrictions apply. 121 # 122 # Arguments 123 # where: (self-explanatory) 124 # sort: (self-explanatory) 125 # limit: (self-explanatory) 126 # page: (self-explanatory) 127 ReturnFilter, : [ReturnSort!] = [id_DESC], : Int = 20, : Int = 1): [Return!]! ( : 128 129 # Required permission: TaxClass:read 130 TaxClass : 131 132 }