OBJECT

TaxRule

link GraphQL Schema definition

1type TaxRule {
2id: Int!
3
4name: String!
5
6displayName: String!
7
8code: String!
9
10rate: Float!
11
12applyTaxType: ApplyTaxType!
13
14# If true, then weighted average tax rate will be applied
15applyTaxToShipping: Boolean!
16
17# If true, then weighted average tax rate will be applied
18applyTaxToHandling: Boolean!
19
20# Arguments
21# format: ISO-8601
22applyFrom(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
23
24# Arguments
25# format: ISO-8601
26applyTo(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz
27
28zipCode: String
29
30city: String
31
32orderPriceRestriction: PriceRange
33
34itemPriceRestriction: PriceRange
35
36# Required permission: none
37#
38# All elements are always returned
39countries: [Country!]!
40
41# Required permission: none
42#
43# All elements are always returned
44states: [CountryState!]!
45
46# Required permission: none
47#
48# All elements are always returned
49taxClasses: [TaxClass!]!
50
51# Required permission: none
52taxGroup: TaxGroup!
53
54}