OBJECT
TaxGroup
link GraphQL Schema definition
1 type TaxGroup { 2 : Int! 3 4 : String! 5 6 : Status! 7 8 # Required permission: Store:read 9 # 10 # All elements are always returned 11 # 12 # Store restrictions apply. 13 : [Store!]! 14 15 # Required permission: TaxRule:read 16 # 17 # All elements are always returned 18 : [TaxRule!]! 19 20 }