Skip to content

labOptions

Fetch paginated lab options collection

Arguments

search_by_organization · Boolean · Optional. If true, search for your organization's options only.
search_string · String · Optional. Search options by name.
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

LabOptionPaginationConnection

Example

query labOptions(
$search_by_organization: Boolean
$search_string: String
$after: String
$before: String
$first: Int
$last: Int
) {
labOptions(
search_by_organization: $search_by_organization
search_string: $search_string
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}