Hi, I’m using the GraphQl query to get orders and Use pagination

I want to add fulfillment_status and customer_account_id filter in orders query with after filter. can you please guide how to do that.

query {
orders{
request_id
complexity
data(after: “bhfgfgjhgfjafjgf” first:10){
pageInfo{
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
id
legacy_id
account_id
order_number
partner_order_id
shop_name
fulfillment_status
shipping_lines {
carrier
method
price
}
shipping_address {
first_name
last_name
address1
address2
city
state
state_code
zip
country
}
order_date
total_tax
subtotal
total_discounts
total_price
auto_print_return_label
custom_invoice_url
account_id
email
profile
packing_note
required_ship_date
flagged
saturday_delivery
ignore_address_validation_errors
priority_flag
source
third_party_shipper {
zip
account_number
country
}
expected_weight_in_oz
insurance
insurance_amount
currency
line_items{
edges {
node {
sku
quantity
quantity_shipped
quantity_allocated
price
quantity_pending_fulfillment
backorder_quantity
promotion_discount
subtotal
}
}
}
}
}
}
}
}

Hello @vraja, welcome to our dev community.

You can see all available filters here: https://developer.shiphero.com/wp-content/uploads/spectaql/#query-orders. Those filters go between () immediately after the “name” of the query, in this case, order. Pagination arguments are fine where you are setting them.

Have a nice day!