Skip to content

offerings

Fetch paginated offerings collection (considered public)

Arguments

after · String · Returns the elements in the list that come after the specified cursor.
before · String · Returns the elements in the list that come before the specified cursor.
first · Int · Returns the first _n_ elements from the list.
last · Int · Returns the last _n_ elements from the list.

Returns

OfferingPaginationConnection

Example

query offerings(
$client_visibility: String
$keywords: String
$offering_id: ID
$offering_ids: [ID]
$offering_user_group_id: ID
$only_client_visible: Boolean
$provider_id: ID
$show_only_visible: Boolean
$order_by: OfferingOrderKeys
$status: String
$after: String
$before: String
$first: Int
$last: Int
) {
offerings(
client_visibility: $client_visibility
keywords: $keywords
offering_id: $offering_id
offering_ids: $offering_ids
offering_user_group_id: $offering_user_group_id
only_client_visible: $only_client_visible
provider_id: $provider_id
show_only_visible: $show_only_visible
order_by: $order_by
status: $status
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}