> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/shipping/llms.txt)
> Source: https://docs.saleor.io/api-reference/shipping/queries/shipping-zones

# shippingZones Query

List of the shop's shipping zones.

Requires the MANAGE\_SHIPPING permission.

```graphql
shippingZones(
  filter: ShippingZoneFilterInput
  channel: String
  before: String
  after: String
  first: Int
  last: Int
): ShippingZoneCountableConnection
```

Details

```graphql
type ShippingZoneCountableConnection {
  pageInfo: PageInfo!
  edges: [ShippingZoneCountableEdge!]!
  totalCount: Int
}
```

<a id="arguments"></a>

### Arguments

<a id="filter"></a>

#### [`filter`](#filter) ● [`ShippingZoneFilterInput`](/api-reference/shipping/inputs/shipping-zone-filter-input.md)

Filtering options for shipping zones.

<a id="channel"></a>

#### [`channel`](#channel) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Slug of a channel for which the data should be returned.

<a id="before"></a>

#### [`before`](#before) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Return the elements in the list that come before the specified cursor.

<a id="after"></a>

#### [`after`](#after) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Return the elements in the list that come after the specified cursor.

<a id="first"></a>

#### [`first`](#first) ● [`Int`](/api-reference/miscellaneous/scalars/int.md)

Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.

<a id="last"></a>

#### [`last`](#last) ● [`Int`](/api-reference/miscellaneous/scalars/int.md)

Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.

<a id="type"></a>

### Type

<a id="shippingzonecountableconnection"></a>

#### [`ShippingZoneCountableConnection`](/api-reference/shipping/objects/shipping-zone-countable-connection.md)
