getFilterLabels

Retrieves available filter labels for a specific page with their configuration and capabilities.

Examples

query GetFilterLabels($page: FilterPage!) {
  getFilterLabels(page: $page) {
    id
    label
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "page": "Issues"
}

Arguments

You can use the following argument(s) to customize your getFilterLabels query.

Argument
Description
Supported fields

page FilterPage! required

The page for which to retrieve filter labels.

Fields

Return type: [FilterLabelItems]

You can use the following field(s) to specify what information your getFilterLabels query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

id String

Filter identifier

label String

Display label for the filter

Last updated