Untitled

 avatar
unknown
plain_text
2 years ago
366 B
3
Indexable
query GetDeliveryIntervals(
    $page: Int
    $itemsPerPage: Int
) {
    deliveryIntervals(
        page: $page
        itemsPerPage: $itemsPerPage
    ) {
        collection {
            id
            code
            originalCode
            partner {
                id
            }
        }
        paginationInfo {
            totalCount
        }
    }
}
Editor is loading...
Leave a Comment