OBJECT
Affiliate
link GraphQL Schema definition
1 type Affiliate { 2 : Int! 3 4 : String! 5 6 : Status! 7 8 : String! 9 10 # Arguments 11 # escapeHtml: (self-explanatory) 12 (: Boolean = false): String 13 14 # Arguments 15 # format: ISO-8601 16 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz! 17 18 # Required permission: Order:read 19 # 20 # Limit must be in range 1 - 100 21 # 22 # Store restrictions apply. 23 # 24 # Arguments 25 # where: (self-explanatory) 26 # sort: (self-explanatory) 27 # limit: (self-explanatory) 28 # page: (self-explanatory) 29 (: OrderFilter, : [OrderSort!] = [number_DESC], : Int = 20, : Int = 1): [Order!]! 30 31 # Required permission: Store:read 32 # 33 # Store restrictions apply. 34 : Store! 35 36 }