Magidoc

nauticalQuoteOrders
Query

List of quote orders.

Arguments

#

after

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

before

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

filter

Filtering options for nautical quote orders.

first

Return the first n elements from the list.

last

Return the last n elements from the list.

sortBy

Sort quote orders.

Response

#

Returns NauticalOrderCountableConnection .

Example

#

    query (
  $sortBy: OrderSortingInput
  $filter: NauticalOrderQuoteFilterInput
  $before: String
  $after: String
  $first: Int
  $last: Int
) {
  nauticalQuoteOrders(
    sortBy: $sortBy
    filter: $filter
    before: $before
    after: $after
    first: $first
    last: $last
  ) {
    pageInfo {
      hasNextPage
      hasPreviousPage
      startCursor
      endCursor
    }
    edges {
      cursor
    }
    totalCount
  }
}

  

3