Magidoc

accountSuppressionFilters
Query

Arguments

#

first

Returns the first n elements from the list.

after

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

last

Returns the last n elements from the list.

before

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

Response

#

Returns AccountSuppressionFilterConnection .

Example

#

    query (
  $first: Int
  $after: String
  $last: Int
  $before: String
  $where: AccountSuppressionFilterFilterInput
  $order: [AccountSuppressionFilterSortInput!]
) {
  accountSuppressionFilters(
    first: $first
    after: $after
    last: $last
    before: $before
    where: $where
    order: $order
  ) {
    pageInfo {
      hasNextPage
      hasPreviousPage
      startCursor
      endCursor
    }
    edges {
      cursor
    }
    nodes {
      id
      localPart
      domain
      reason
      createdUtc
      createdBy
    }
    totalCount
  }
}

  

3