OBJECT

CountryState

link GraphQL Schema definition

1type CountryState {
2id: Int!
3
4name: String!
5
6code: String!
7
8# Required permission: Country:read
9country: Country!
10
11}