<!-- # hard line break macro for HTML -->

# @fiftyone/relay

## Hooks

<a id="fos-fiftyone-fiftyone-fiftyone-relay-userelayenvironment"></a>

### useRelayEnvironment

### @fiftyone/relay.useRelayEnvironment()

* **Return type:**
  `Environment`

## Functions

<a id="fos-fiftyone-fiftyone-fiftyone-relay-writer"></a>

### Writer

### @fiftyone/relay.Writer(\_\_namedParameters)

* **Arguments:**
  * **\_\_namedParameters** (`WriterProps`)
* **Return type:**
  `Element`

A Recoil/Relay atomic syncing interface between a current page query
and atom and atom families

<a id="fos-fiftyone-fiftyone-fiftyone-relay-getpagequery"></a>

### getPageQuery

### @fiftyone/relay.getPageQuery()

* **Return type:**
  `Object`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-graphqlsyncfragmentatom"></a>

### graphQLSyncFragmentAtom

### @fiftyone/relay.graphQLSyncFragmentAtom(fragmentOptions, options)

* **Arguments:**
  * **fragmentOptions** (`GraphQLSyncFragmentSyncAtomOptions`)
  * **options** (`GraphQLSyncFragmentAtomOptions`)
* **Return type:**
  `RecoilState < K >` `<` `plugins.fiftyone.relay.K` `>`

Creates a recoil atom synced with a relay fragment via its path in a query.
If the fragment path cannot be read from given the parent fragment keys and
the optional final read function, the atom’s default value will be used.

Synchronization happens through two complementary paths:

1. The atom effect below initializes active consumers, follows page changes,
   and owns the live Relay fragment subscription.
2. The page synchronizer registered after the atom definition participates
   in every Writer transaction, including transitions published before this
   atom has an active consumer.

The second path prevents a long-lived RecoilRoot from exposing a retained
value from the previous dataset while the next dataset’s consumers mount.

<a id="fos-fiftyone-fiftyone-fiftyone-relay-graphqlsyncfragmentatomfamily"></a>

### graphQLSyncFragmentAtomFamily

### @fiftyone/relay.graphQLSyncFragmentAtomFamily(fragmentOptions, options)

* **Arguments:**
  * **fragmentOptions** (`GraphQLSyncFragmentSyncAtomFamilyOptions`)
  * **options** (`GraphQLSyncFragmentAtomFamilyOptions`)

Creates a recoil atom family synced with a relay fragment via its path in a
query. If the fragment path cannot be read from given the parent fragment
keys. Includes the optional `sync` parameter to conditionally opt-in to
fragment syncing given an atom instance’s parameters `P`.

> ### @fiftyone/relay.graphQLSyncFragmentAtomFamily(fragmentOptions, options)

> * **Arguments:**
>   * **params** (`P`)
> * **Return type:**
>   `RecoilState < K >` `<` `plugins.fiftyone.relay.K` `>`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-ispaginatesamplesconnection"></a>

### isPaginateSamplesConnection

### @fiftyone/relay.isPaginateSamplesConnection(samples)

* **Arguments:**
  * **samples** (`Union`)
* **Return type:**

Type guard for [`PaginateSamplesConnection`](#fiftyone-relay.PaginateSamplesConnection). Returns `true` when
`samples` is the successful connection variant and `edges` / `pageInfo` are
safe to access.

<a id="fos-fiftyone-fiftyone-fiftyone-relay-readfragment"></a>

### readFragment

### @fiftyone/relay.readFragment(fragmentInput, fragmentRef)

* **Arguments:**
  * **fragmentInput** (`GraphQLTaggedNode`)
  * **fragmentRef** (`TKey`)
* **Return type:**
  `KeyTypeData < TKey >` `<` `plugins.fiftyone.relay.TKey` `>`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-registerpagesync"></a>

### registerPageSync

### @fiftyone/relay.registerPageSync(key, subscription)

* **Arguments:**
  * **key** (`string`)
  * **subscription** (`PageSubscription`)

Registers a keyed subscriber that runs for every published page.
Re-registering a key replaces its callback, and stale cleanup cannot remove
the replacement.

> ### @fiftyone/relay.registerPageSync(key, subscription)

> * **Return type:**
>   `void`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-reseteffect"></a>

### resetEffect

### @fiftyone/relay.resetEffect(viewChange)

* **Arguments:**
  * **viewChange** (`boolean`)
* **Return type:**
  `AtomEffect < T >` `<` `plugins.fiftyone.relay.T` `>`

Effect for restting an atom’s value when the view or dataset changes.
Can be limited to only dataset changes when viewChange is false

<a id="fos-fiftyone-fiftyone-fiftyone-relay-selectorwitheffect"></a>

### selectorWithEffect

### @fiftyone/relay.selectorWithEffect(\_\_namedParameters, itemKey)

* **Arguments:**
  * **\_\_namedParameters**
  * **itemKey** (`string`)
* **Return type:**
  `RecoilState < T >` `<` `plugins.fiftyone.relay.T` `>`

Wraps a Recoil selector so writes can be routed through the setter registry
provided by `SelectorEffectContext`.

This is useful when a piece of state is primarily derived from another atom
or selector, but writes must still flow through an external sync layer such
as the Relay writer/session bridge. The returned selector:

- reads exactly like a normal selector via `options.get`
- looks up a matching setter from the effect store using `itemKey` or
  `options.key`
- optionally transforms the write payload via `options.set`
- optionally mirrors the final value into `state` for local Recoil updates

<a id="fos-fiftyone-fiftyone-fiftyone-relay-subscribe"></a>

### subscribe

### @fiftyone/relay.subscribe(subscription)

* **Arguments:**
  * **subscription** ()

<a id="fos-fiftyone-fiftyone-fiftyone-relay-subscribebefore"></a>

### subscribeBefore

### @fiftyone/relay.subscribeBefore(subscription)

* **Arguments:**
  * **subscription** ()

## Types

<a id="fos-fiftyone-fiftyone-fiftyone-relay-pagequery"></a>

### PageQuery

### *class* @fiftyone/relay.PageQuery()

#### Properties

| Name            | Type                                                                                                 | Description   |
|-----------------|------------------------------------------------------------------------------------------------------|---------------|
| concreteRequest | `ConcreteRequest`                                                                                    |               |
| data            |                                                                                                      |               |
| event           | `Union<` `'fieldVisibility'` `,` `'modal'` `,` `'slice'` `,` `'spaces'` `>`                          |               |
| preloadedQuery  | `PreloadedQuery < T , Record >` `<` `plugins.fiftyone.relay.T` `,` `Record < string , unknown >` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregate"></a>

### *class* @fiftyone/relay.Aggregate()

### Aggregate

| Name                      | Type                                                             | Description   |
|---------------------------|------------------------------------------------------------------|---------------|
| Aggregate.count           | `Union<` `plugins.fiftyone.relay.Count` `,` `null` `>`           |               |
| Aggregate.countValues     | `Union<` `plugins.fiftyone.relay.CountValues` `,` `null` `>`     |               |
| Aggregate.histogramValues | `Union<` `plugins.fiftyone.relay.HistogramValues` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregationform"></a>

### *class* @fiftyone/relay.AggregationForm()

### AggregationForm

| Name                             | Type                                                                             | Description   |
|----------------------------------|----------------------------------------------------------------------------------|---------------|
| AggregationForm.dataset          | `string`                                                                         |               |
| AggregationForm.dynamicGroup     | `Union<` `object` `,` `null` `>`                                                 |               |
| AggregationForm.extendedStages   | `Array<` `any` `>`                                                               |               |
| AggregationForm.filters          | `Union<` `object` `,` `null` `>`                                                 |               |
| AggregationForm.groupId          | `Union<` `string` `,` `null` `>`                                                 |               |
| AggregationForm.hiddenLabels     | `ReadonlyArray < SelectedLabel >` `<` `plugins.fiftyone.relay.SelectedLabel` `>` |               |
| AggregationForm.hint             | `Union<` `string` `,` `null` `>`                                                 |               |
| AggregationForm.index            | `Union<` `number` `,` `null` `>`                                                 |               |
| AggregationForm.maxQueryTime     | `Union<` `number` `,` `null` `>`                                                 |               |
| AggregationForm.mixed            | `boolean`                                                                        |               |
| AggregationForm.paths            | `ReadonlyArray < string >` `<` `string` `>`                                      |               |
| AggregationForm.queryPerformance | `Union<` `boolean` `,` `null` `>`                                                |               |
| AggregationForm.sampleIds        | `ReadonlyArray < string >` `<` `string` `>`                                      |               |
| AggregationForm.slice            | `Union<` `string` `,` `null` `>`                                                 |               |
| AggregationForm.slices           | `Union<` `ReadonlyArray < string >` `,` `null` `>`                               |               |
| AggregationForm.view             | `Array<` `any` `>`                                                               |               |
| AggregationForm.viewName         | `Union<` `string` `,` `null` `>`                                                 |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-brainruntype"></a>

### *class* @fiftyone/relay.BrainRunType()

### BrainRunType

Union of `'similarity'`, `'visualization'`, `'%future added value'`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-colorby"></a>

### *class* @fiftyone/relay.ColorBy()

### ColorBy

Union of `'field'`, `'instance'`, `'value'`, `'%future added value'`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-colorschemeinput"></a>

### *class* @fiftyone/relay.ColorSchemeInput()

### ColorSchemeInput

| Name                                      | Type                                                                    | Description   |
|-------------------------------------------|-------------------------------------------------------------------------|---------------|
| ColorSchemeInput.colorBy                  | `Union<` `string` `,` `null` `>`                                        |               |
| ColorSchemeInput.colorPool                | `ReadonlyArray < string >` `<` `string` `>`                             |               |
| ColorSchemeInput.colorscales              | `Union<` `ReadonlyArray < ColorscaleInput >` `,` `null` `>`             |               |
| ColorSchemeInput.defaultColorscale        | `Union<` `plugins.fiftyone.relay.DefaultColorscaleInput` `,` `null` `>` |               |
| ColorSchemeInput.defaultMaskTargetsColors | `Union<` `ReadonlyArray < MaskColorInput >` `,` `null` `>`              |               |
| ColorSchemeInput.fields                   | `Union<` `ReadonlyArray < CustomizeColorInput >` `,` `null` `>`         |               |
| ColorSchemeInput.id                       | `Union<` `string` `,` `null` `>`                                        |               |
| ColorSchemeInput.labelTags                | `Union<` `plugins.fiftyone.relay.LabelTagColorInput` `,` `null` `>`     |               |
| ColorSchemeInput.multicolorKeypoints      | `Union<` `boolean` `,` `null` `>`                                       |               |
| ColorSchemeInput.opacity                  | `Union<` `number` `,` `null` `>`                                        |               |
| ColorSchemeInput.showSkeletons            | `Union<` `boolean` `,` `null` `>`                                       |               |
| ColorSchemeInput.temporalTags             | `Union<` `plugins.fiftyone.relay.TemporalTagColorInput` `,` `null` `>`  |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-colorscaleinput"></a>

### *class* @fiftyone/relay.ColorscaleInput()

### ColorscaleInput

| Name                 | Type                                                            | Description   |
|----------------------|-----------------------------------------------------------------|---------------|
| ColorscaleInput.list | `Union<` `ReadonlyArray < ColorscaleListInput >` `,` `null` `>` |               |
| ColorscaleInput.name | `Union<` `string` `,` `null` `>`                                |               |
| ColorscaleInput.path | `string`                                                        |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-colorscalelistinput"></a>

### *class* @fiftyone/relay.ColorscaleListInput()

### ColorscaleListInput

| Name                      | Type                             | Description   |
|---------------------------|----------------------------------|---------------|
| ColorscaleListInput.color | `string`                         |               |
| ColorscaleListInput.value | `Union<` `number` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-count"></a>

### *class* @fiftyone/relay.Count()

### Count

| Name        | Type     | Description   |
|-------------|----------|---------------|
| Count.field | `string` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-countvalues"></a>

### *class* @fiftyone/relay.CountValues()

### CountValues

| Name              | Type     | Description   |
|-------------------|----------|---------------|
| CountValues.field | `string` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-customizecolorinput"></a>

### *class* @fiftyone/relay.CustomizeColorInput()

### CustomizeColorInput

| Name                                  | Type                                                        | Description   |
|---------------------------------------|-------------------------------------------------------------|---------------|
| CustomizeColorInput.colorByAttribute  | `Union<` `string` `,` `null` `>`                            |               |
| CustomizeColorInput.fieldColor        | `Union<` `string` `,` `null` `>`                            |               |
| CustomizeColorInput.maskTargetsColors | `Union<` `ReadonlyArray < MaskColorInput >` `,` `null` `>`  |               |
| CustomizeColorInput.path              | `string`                                                    |               |
| CustomizeColorInput.valueColors       | `Union<` `ReadonlyArray < ValueColorInput >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-defaultcolorscaleinput"></a>

### *class* @fiftyone/relay.DefaultColorscaleInput()

### DefaultColorscaleInput

| Name                        | Type                                                            | Description   |
|-----------------------------|-----------------------------------------------------------------|---------------|
| DefaultColorscaleInput.list | `Union<` `ReadonlyArray < ColorscaleListInput >` `,` `null` `>` |               |
| DefaultColorscaleInput.name | `Union<` `string` `,` `null` `>`                                |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-extendedviewform"></a>

### *class* @fiftyone/relay.ExtendedViewForm()

### ExtendedViewForm

| Name                       | Type                                               | Description   |
|----------------------------|----------------------------------------------------|---------------|
| ExtendedViewForm.filters   | `Union<` `object` `,` `null` `>`                   |               |
| ExtendedViewForm.mixed     | `Union<` `boolean` `,` `null` `>`                  |               |
| ExtendedViewForm.sampleIds | `Union<` `ReadonlyArray < string >` `,` `null` `>` |               |
| ExtendedViewForm.slice     | `Union<` `string` `,` `null` `>`                   |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-graphqlsyncfragmentatomfamilyoptions"></a>

### *class* @fiftyone/relay.GraphQLSyncFragmentAtomFamilyOptions()

### GraphQLSyncFragmentAtomFamilyOptions

| Name                                 | Type                                                                                  | Description   |
|--------------------------------------|---------------------------------------------------------------------------------------|---------------|
| GraphQLSyncFragmentAtomFamilyOptions | `Omit < AtomFamilyOptions ,  >` `<` `AtomFamilyOptions < K , P >` `,` `'default'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-graphqlsyncfragmentatomoptions"></a>

### *class* @fiftyone/relay.GraphQLSyncFragmentAtomOptions()

### GraphQLSyncFragmentAtomOptions

| Name                           | Type                                                                  | Description   |
|--------------------------------|-----------------------------------------------------------------------|---------------|
| GraphQLSyncFragmentAtomOptions | `Omit < AtomOptions ,  >` `<` `AtomOptions < K >` `,` `'default'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-graphqlsyncfragmentsyncatomfamilyoptions"></a>

### *class* @fiftyone/relay.GraphQLSyncFragmentSyncAtomFamilyOptions()

### GraphQLSyncFragmentSyncAtomFamilyOptions

| Name                                               | Type                                                                                                                                  | Description   |
|----------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------|---------------|
| GraphQLSyncFragmentSyncAtomFamilyOptions.default   | `plugins.fiftyone.relay.K`                                                                                                            |               |
| GraphQLSyncFragmentSyncAtomFamilyOptions.fragments | `Array<` `GraphQLTaggedNode` `>`                                                                                                      |               |
| GraphQLSyncFragmentSyncAtomFamilyOptions.keys      | `Array<` `string` `>`                                                                                                                 |               |
| GraphQLSyncFragmentSyncAtomFamilyOptions.read      | `(` `data` `:` `KeyTypeData < T >` `, `` ``previous` `:` `Union< KeyTypeData ,  >` `, `` ``params` `:` `plugins.fiftyone.relay.P` `)` |               |
| GraphQLSyncFragmentSyncAtomFamilyOptions.sync      | `(` `params` `:` `plugins.fiftyone.relay.P` `)`                                                                                       |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-graphqlsyncfragmentsyncatomoptions"></a>

### *class* @fiftyone/relay.GraphQLSyncFragmentSyncAtomOptions()

### GraphQLSyncFragmentSyncAtomOptions

| Name                                              | Type                                                                                   | Description   |
|---------------------------------------------------|----------------------------------------------------------------------------------------|---------------|
| GraphQLSyncFragmentSyncAtomOptions.default        | `plugins.fiftyone.relay.K`                                                             |               |
| GraphQLSyncFragmentSyncAtomOptions.fragments      | `Array<` `GraphQLTaggedNode` `>`                                                       |               |
| GraphQLSyncFragmentSyncAtomOptions.keys           | `Array<` `string` `>`                                                                  |               |
| GraphQLSyncFragmentSyncAtomOptions.read           | `(` `data` `:` `KeyTypeData < T >` `, `` ``previous` `:` `Union< KeyTypeData ,  >` `)` |               |
| GraphQLSyncFragmentSyncAtomOptions.selectorEffect | `Union<` `'write'` `,` `boolean` `,` `( params : Parameters )` `>`                     |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-groupelementfilter"></a>

### *class* @fiftyone/relay.GroupElementFilter()

### GroupElementFilter

| Name                      | Type                                               | Description   |
|---------------------------|----------------------------------------------------|---------------|
| GroupElementFilter.id     | `Union<` `string` `,` `null` `>`                   |               |
| GroupElementFilter.slice  | `Union<` `string` `,` `null` `>`                   |               |
| GroupElementFilter.slices | `Union<` `ReadonlyArray < string >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-histogramvalues"></a>

### *class* @fiftyone/relay.HistogramValues()

### HistogramValues

| Name                  | Type     | Description   |
|-----------------------|----------|---------------|
| HistogramValues.field | `string` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-indextype"></a>

### *class* @fiftyone/relay.IndexType()

### IndexType

Union of `'asc'`, `'desc'`, `'%future added value'`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-labeltagcolorinput"></a>

### *class* @fiftyone/relay.LabelTagColorInput()

### LabelTagColorInput

| Name                           | Type                                                        | Description   |
|--------------------------------|-------------------------------------------------------------|---------------|
| LabelTagColorInput.fieldColor  | `Union<` `string` `,` `null` `>`                            |               |
| LabelTagColorInput.valueColors | `Union<` `ReadonlyArray < ValueColorInput >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-lightninginput"></a>

### *class* @fiftyone/relay.LightningInput()

### LightningInput

| Name                   | Type                                                                                       | Description   |
|------------------------|--------------------------------------------------------------------------------------------|---------------|
| LightningInput.dataset | `string`                                                                                   |               |
| LightningInput.match   | `Union<` `object` `,` `null` `>`                                                           |               |
| LightningInput.paths   | `ReadonlyArray < LightningPathInput >` `<` `plugins.fiftyone.relay.LightningPathInput` `>` |               |
| LightningInput.slice   | `Union<` `string` `,` `null` `>`                                                           |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-lightningpathinput"></a>

### *class* @fiftyone/relay.LightningPathInput()

### LightningPathInput

| Name                                  | Type                                               | Description   |
|---------------------------------------|----------------------------------------------------|---------------|
| LightningPathInput.exclude            | `Union<` `ReadonlyArray < string >` `,` `null` `>` |               |
| LightningPathInput.filters            | `Union<` `object` `,` `null` `>`                   |               |
| LightningPathInput.first              | `Union<` `number` `,` `null` `>`                   |               |
| LightningPathInput.index              | `Union<` `string` `,` `null` `>`                   |               |
| LightningPathInput.maxDocumentsSearch | `Union<` `number` `,` `null` `>`                   |               |
| LightningPathInput.path               | `string`                                           |               |
| LightningPathInput.search             | `Union<` `string` `,` `null` `>`                   |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-maskcolorinput"></a>

### *class* @fiftyone/relay.MaskColorInput()

### MaskColorInput

| Name                     | Type     | Description   |
|--------------------------|----------|---------------|
| MaskColorInput.color     | `string` |               |
| MaskColorInput.intTarget | `number` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-pagesubscription"></a>

### *class* @fiftyone/relay.PageSubscription()

### PageSubscription

<a id="fos-fiftyone-fiftyone-fiftyone-relay-paginatesamplesconnection"></a>

### *class* @fiftyone/relay.PaginateSamplesConnection()

### PaginateSamplesConnection

The successful `SampleItemStrConnection` branch of `samples`, with the
`QueryTimeout` and `%other` union members removed. Use this when narrowing
`paginateSamplesQuery` results before accessing `edges` / `pageInfo`.

| Name                      | Type                                                            | Description   |
|---------------------------|-----------------------------------------------------------------|---------------|
| PaginateSamplesConnection | `Exclude < Exclude ,  >` `<` `Exclude <  ,  >` `,` `Object` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-paginatesamplesnode"></a>

### *class* @fiftyone/relay.PaginateSamplesNode()

### PaginateSamplesNode

A concrete sample node from `paginateSamplesQuery`, with the `QueryTimeout`,
`%other` connection variants and the `%other` node variant all narrowed
away. Consumers can treat the result as one of the known sample types
(`ImageSample`, `PointCloudSample`, etc.).

| Name                | Type                                                                              | Description   |
|---------------------|-----------------------------------------------------------------------------------|---------------|
| PaginateSamplesNode | `Exclude <  ,  >` `<` <br/><br/>```<br/>``<br/>```<br/><br/>\`\` `,` `Object` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-samplefilter"></a>

### *class* @fiftyone/relay.SampleFilter()

### SampleFilter

| Name               | Type                                                                | Description   |
|--------------------|---------------------------------------------------------------------|---------------|
| SampleFilter.group | `Union<` `plugins.fiftyone.relay.GroupElementFilter` `,` `null` `>` |               |
| SampleFilter.id    | `Union<` `string` `,` `null` `>`                                    |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-savedviewinfo"></a>

### *class* @fiftyone/relay.SavedViewInfo()

### SavedViewInfo

| Name                      | Type                             | Description   |
|---------------------------|----------------------------------|---------------|
| SavedViewInfo.color       | `Union<` `string` `,` `null` `>` |               |
| SavedViewInfo.description | `Union<` `string` `,` `null` `>` |               |
| SavedViewInfo.name        | `Union<` `string` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-selectedlabel"></a>

### *class* @fiftyone/relay.SelectedLabel()

### SelectedLabel

| Name                      | Type                             | Description   |
|---------------------------|----------------------------------|---------------|
| SelectedLabel.field       | `string`                         |               |
| SelectedLabel.frameNumber | `Union<` `number` `,` `null` `>` |               |
| SelectedLabel.instanceId  | `Union<` `string` `,` `null` `>` |               |
| SelectedLabel.labelId     | `string`                         |               |
| SelectedLabel.sampleId    | `string`                         |               |
| SelectedLabel.type        | `Union<` `string` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setter"></a>

### *class* @fiftyone/relay.Setter()

### Setter

<a id="fos-fiftyone-fiftyone-fiftyone-relay-sidebargroupinput"></a>

### *class* @fiftyone/relay.SidebarGroupInput()

### SidebarGroupInput

| Name                       | Type                                               | Description   |
|----------------------------|----------------------------------------------------|---------------|
| SidebarGroupInput.expanded | `Union<` `boolean` `,` `null` `>`                  |               |
| SidebarGroupInput.name     | `string`                                           |               |
| SidebarGroupInput.paths    | `Union<` `ReadonlyArray < string >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-sidebarmode"></a>

### *class* @fiftyone/relay.SidebarMode()

### SidebarMode

Union of `'all'`, `'best'`, `'fast'`, `'%future added value'`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-stateform"></a>

### *class* @fiftyone/relay.StateForm()

### StateForm

| Name                | Type                                                      | Description   |
|---------------------|-----------------------------------------------------------|---------------|
| StateForm.addStages | `Union<` `Array< any >` `,` `null` `>`                    |               |
| StateForm.extended  | `Union<` `object` `,` `null` `>`                          |               |
| StateForm.filters   | `Union<` `object` `,` `null` `>`                          |               |
| StateForm.labels    | `Union<` `ReadonlyArray < SelectedLabel >` `,` `null` `>` |               |
| StateForm.sampleIds | `Union<` `ReadonlyArray < string >` `,` `null` `>`        |               |
| StateForm.slice     | `Union<` `string` `,` `null` `>`                          |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-temporaltagcolorinput"></a>

### *class* @fiftyone/relay.TemporalTagColorInput()

### TemporalTagColorInput

| Name                              | Type                                                        | Description   |
|-----------------------------------|-------------------------------------------------------------|---------------|
| TemporalTagColorInput.fieldColor  | `Union<` `string` `,` `null` `>`                            |               |
| TemporalTagColorInput.valueColors | `Union<` `ReadonlyArray < ValueColorInput >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-theme"></a>

### *class* @fiftyone/relay.Theme()

### Theme

Union of `'browser'`, `'dark'`, `'light'`, `'%future added value'`

<a id="fos-fiftyone-fiftyone-fiftyone-relay-valuecolorinput"></a>

### *class* @fiftyone/relay.ValueColorInput()

### ValueColorInput

| Name                  | Type     | Description   |
|-----------------------|----------|---------------|
| ValueColorInput.color | `string` |               |
| ValueColorInput.value | `string` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregatequery"></a>

### *class* @fiftyone/relay.aggregateQuery()

### aggregateQuery

| Name                     | Type                                              | Description   |
|--------------------------|---------------------------------------------------|---------------|
| aggregateQuery.response  | `plugins.fiftyone.relay.aggregateQuery$data`      |               |
| aggregateQuery.variables | `plugins.fiftyone.relay.aggregateQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregatequery-data"></a>

### *class* @fiftyone/relay.aggregateQuery$data()

### aggregateQuery$data

| Name                          | Type                                        | Description   |
|-------------------------------|---------------------------------------------|---------------|
| aggregateQuery$data.aggregate | `ReadonlyArray <  >` `<` `Union<  ,  >` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregatequery-variables"></a>

### *class* @fiftyone/relay.aggregateQuery$variables()

### aggregateQuery$variables

| Name                                  | Type                                                                     | Description   |
|---------------------------------------|--------------------------------------------------------------------------|---------------|
| aggregateQuery$variables.aggregations | `ReadonlyArray < Aggregate >` `<` `plugins.fiftyone.relay.Aggregate` `>` |               |
| aggregateQuery$variables.dataset      | `string`                                                                 |               |
| aggregateQuery$variables.view         | `Array<` `any` `>`                                                       |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregationsquery"></a>

### *class* @fiftyone/relay.aggregationsQuery()

### aggregationsQuery

| Name                        | Type                                                 | Description   |
|-----------------------------|------------------------------------------------------|---------------|
| aggregationsQuery.response  | `plugins.fiftyone.relay.aggregationsQuery$data`      |               |
| aggregationsQuery.variables | `plugins.fiftyone.relay.aggregationsQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregationsquery-data"></a>

### *class* @fiftyone/relay.aggregationsQuery$data()

### aggregationsQuery$data

| Name                                | Type                                                          | Description   |
|-------------------------------------|---------------------------------------------------------------|---------------|
| aggregationsQuery$data.aggregations | `ReadonlyArray <  >` `<` `Union<  ,  ,  ,  ,  ,  ,  ,  >` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregationsquery-variables"></a>

### *class* @fiftyone/relay.aggregationsQuery$variables()

### aggregationsQuery$variables

| Name                             | Type                                     | Description   |
|----------------------------------|------------------------------------------|---------------|
| aggregationsQuery$variables.form | `plugins.fiftyone.relay.AggregationForm` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-colorschemefragment-data"></a>

### *class* @fiftyone/relay.colorSchemeFragment$data()

### colorSchemeFragment$data

| Name                                              | Type                                                     | Description   |
|---------------------------------------------------|----------------------------------------------------------|---------------|
| colorSchemeFragment$data. $fragmentType           | `'colorSchemeFragment'`                                  |               |
| colorSchemeFragment$data.colorBy                  | `Union<` `plugins.fiftyone.relay.ColorBy` `,` `null` `>` |               |
| colorSchemeFragment$data.colorPool                | `Union<` `ReadonlyArray < string >` `,` `null` `>`       |               |
| colorSchemeFragment$data.colorscales              | `Union<` `ReadonlyArray <  >` `,` `null` `>`             |               |
| colorSchemeFragment$data.defaultColorscale        | `Union<` `Object` `,` `null` `>`                         |               |
| colorSchemeFragment$data.defaultMaskTargetsColors | `Union<` `ReadonlyArray <  >` `,` `null` `>`             |               |
| colorSchemeFragment$data.fields                   | `Union<` `ReadonlyArray <  >` `,` `null` `>`             |               |
| colorSchemeFragment$data.id                       | `string`                                                 |               |
| colorSchemeFragment$data.labelTags                | `Union<` `Object` `,` `null` `>`                         |               |
| colorSchemeFragment$data.multicolorKeypoints      | `Union<` `boolean` `,` `null` `>`                        |               |
| colorSchemeFragment$data.opacity                  | `Union<` `number` `,` `null` `>`                         |               |
| colorSchemeFragment$data.showSkeletons            | `Union<` `boolean` `,` `null` `>`                        |               |
| colorSchemeFragment$data.temporalTags             | `Union<` `Object` `,` `null` `>`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-colorschemefragment-key"></a>

### *class* @fiftyone/relay.colorSchemeFragment$key()

### colorSchemeFragment$key

| Name                                      | Type                                                | Description   |
|-------------------------------------------|-----------------------------------------------------|---------------|
| colorSchemeFragment$key. $data            | `plugins.fiftyone.relay.colorSchemeFragment$data`   |               |
| colorSchemeFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'colorSchemeFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-configfragment-data"></a>

### *class* @fiftyone/relay.configFragment$data()

### configFragment$data

| Name                               | Type                                                      | Description   |
|------------------------------------|-----------------------------------------------------------|---------------|
| configFragment$data. $fragmentType | `'configFragment'`                                        |               |
| configFragment$data.colorscale     | `Union<` `ReadonlyArray < ReadonlyArray >` `,` `null` `>` |               |
| configFragment$data.config         | `Object`                                                  |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-configfragment-key"></a>

### *class* @fiftyone/relay.configFragment$key()

### configFragment$key

| Name                                 | Type                                           | Description   |
|--------------------------------------|------------------------------------------------|---------------|
| configFragment$key. $data            | `plugins.fiftyone.relay.configFragment$data`   |               |
| configFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'configFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-configquery"></a>

### *class* @fiftyone/relay.configQuery()

### configQuery

| Name                  | Type                                           | Description   |
|-----------------------|------------------------------------------------|---------------|
| configQuery.response  | `plugins.fiftyone.relay.configQuery$data`      |               |
| configQuery.variables | `plugins.fiftyone.relay.configQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-configquery-data"></a>

### *class* @fiftyone/relay.configQuery$data()

### configQuery$data

| Name                        | Type                                                      | Description   |
|-----------------------------|-----------------------------------------------------------|---------------|
| configQuery$data.colorscale | `Union<` `ReadonlyArray < ReadonlyArray >` `,` `null` `>` |               |
| configQuery$data.config     | `Object`                                                  |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-configquery-variables"></a>

### *class* @fiftyone/relay.configQuery$variables()

### configQuery$variables

<a id="fos-fiftyone-fiftyone-fiftyone-relay-countvaluesquery"></a>

### *class* @fiftyone/relay.countValuesQuery()

### countValuesQuery

| Name                       | Type                                                | Description   |
|----------------------------|-----------------------------------------------------|---------------|
| countValuesQuery.response  | `plugins.fiftyone.relay.countValuesQuery$data`      |               |
| countValuesQuery.variables | `plugins.fiftyone.relay.countValuesQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-countvaluesquery-data"></a>

### *class* @fiftyone/relay.countValuesQuery$data()

### countValuesQuery$data

| Name                            | Type                                           | Description   |
|---------------------------------|------------------------------------------------|---------------|
| countValuesQuery$data.aggregate | `ReadonlyArray <  >` `<` `Union<  ,  ,  >` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-countvaluesquery-variables"></a>

### *class* @fiftyone/relay.countValuesQuery$variables()

### countValuesQuery$variables

| Name                               | Type                                                              | Description   |
|------------------------------------|-------------------------------------------------------------------|---------------|
| countValuesQuery$variables.dataset | `string`                                                          |               |
| countValuesQuery$variables.form    | `Union<` `plugins.fiftyone.relay.ExtendedViewForm` `,` `null` `>` |               |
| countValuesQuery$variables.path    | `string`                                                          |               |
| countValuesQuery$variables.view    | `Array<` `any` `>`                                                |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-createsavedviewmutation"></a>

### *class* @fiftyone/relay.createSavedViewMutation()

### createSavedViewMutation

| Name                              | Type                                                       | Description   |
|-----------------------------------|------------------------------------------------------------|---------------|
| createSavedViewMutation.response  | `plugins.fiftyone.relay.createSavedViewMutation$data`      |               |
| createSavedViewMutation.variables | `plugins.fiftyone.relay.createSavedViewMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-createsavedviewmutation-data"></a>

### *class* @fiftyone/relay.createSavedViewMutation$data()

### createSavedViewMutation$data

| Name                                         | Type                             | Description   |
|----------------------------------------------|----------------------------------|---------------|
| createSavedViewMutation$data.createSavedView | `Union<` `Object` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-createsavedviewmutation-variables"></a>

### *class* @fiftyone/relay.createSavedViewMutation$variables()

### createSavedViewMutation$variables

| Name                                           | Type                                                       | Description   |
|------------------------------------------------|------------------------------------------------------------|---------------|
| createSavedViewMutation$variables.color        | `Union<` `string` `,` `null` `>`                           |               |
| createSavedViewMutation$variables.datasetName  | `Union<` `string` `,` `null` `>`                           |               |
| createSavedViewMutation$variables.description  | `Union<` `string` `,` `null` `>`                           |               |
| createSavedViewMutation$variables.form         | `Union<` `plugins.fiftyone.relay.StateForm` `,` `null` `>` |               |
| createSavedViewMutation$variables.session      | `Union<` `string` `,` `null` `>`                           |               |
| createSavedViewMutation$variables.subscription | `string`                                                   |               |
| createSavedViewMutation$variables.viewName     | `string`                                                   |               |
| createSavedViewMutation$variables.viewStages   | `Union<` `Array< any >` `,` `null` `>`                     |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetappconfigfragment-data"></a>

### *class* @fiftyone/relay.datasetAppConfigFragment$data()

### datasetAppConfigFragment$data

| Name                                                       | Type                                               | Description   |
|------------------------------------------------------------|----------------------------------------------------|---------------|
| datasetAppConfigFragment$data. $fragmentType               | `'datasetAppConfigFragment'`                       |               |
| datasetAppConfigFragment$data.activeFields                 | `Union<` `Object` `,` `null` `>`                   |               |
| datasetAppConfigFragment$data.colorScheme                  | `Union<` `Object` `,` `null` `>`                   |               |
| datasetAppConfigFragment$data.disableFrameFiltering        | `Union<` `boolean` `,` `null` `>`                  |               |
| datasetAppConfigFragment$data.dynamicGroupsTargetFrameRate | `number`                                           |               |
| datasetAppConfigFragment$data.gridMediaField               | `string`                                           |               |
| datasetAppConfigFragment$data.mediaFallback                | `boolean`                                          |               |
| datasetAppConfigFragment$data.mediaFields                  | `Union<` `ReadonlyArray < string >` `,` `null` `>` |               |
| datasetAppConfigFragment$data.modalMediaField              | `string`                                           |               |
| datasetAppConfigFragment$data.plugins                      | `Union<` `object` `,` `null` `>`                   |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetappconfigfragment-key"></a>

### *class* @fiftyone/relay.datasetAppConfigFragment$key()

### datasetAppConfigFragment$key

| Name                                           | Type                                                     | Description   |
|------------------------------------------------|----------------------------------------------------------|---------------|
| datasetAppConfigFragment$key. $data            | `plugins.fiftyone.relay.datasetAppConfigFragment$data`   |               |
| datasetAppConfigFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'datasetAppConfigFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetfragment-data"></a>

### *class* @fiftyone/relay.datasetFragment$data()

### datasetFragment$data

| Name                                    | Type                                                            | Description   |
|-----------------------------------------|-----------------------------------------------------------------|---------------|
| datasetFragment$data. $fragmentSpreads  | `FragmentRefs <  >` `<` `Union<  ,  ,  ,  ,  ,  ,  ,  ,  >` `>` |               |
| datasetFragment$data. $fragmentType     | `'datasetFragment'`                                             |               |
| datasetFragment$data.appConfig          | `Union<` `Object` `,` `null` `>`                                |               |
| datasetFragment$data.brainMethods       | `Union<` `ReadonlyArray <  >` `,` `null` `>`                    |               |
| datasetFragment$data.createdAt          | `Union<` `number` `,` `null` `>`                                |               |
| datasetFragment$data.datasetId          | `string`                                                        |               |
| datasetFragment$data.defaultMaskTargets | `Union<` `ReadonlyArray <  >` `,` `null` `>`                    |               |
| datasetFragment$data.defaultSkeleton    | `Union<` `Object` `,` `null` `>`                                |               |
| datasetFragment$data.evaluations        | `Union<` `ReadonlyArray <  >` `,` `null` `>`                    |               |
| datasetFragment$data.groupField         | `Union<` `string` `,` `null` `>`                                |               |
| datasetFragment$data.groupMediaTypes    | `Union<` `ReadonlyArray <  >` `,` `null` `>`                    |               |
| datasetFragment$data.id                 | `string`                                                        |               |
| datasetFragment$data.info               | `Union<` `object` `,` `null` `>`                                |               |
| datasetFragment$data.lastLoadedAt       | `Union<` `number` `,` `null` `>`                                |               |
| datasetFragment$data.maskTargets        | `ReadonlyArray <  >` `<` `Object` `>`                           |               |
| datasetFragment$data.mediaSources       | `Union<` `object` `,` `null` `>`                                |               |
| datasetFragment$data.mediaType          | `Union<` `string` `,` `null` `>`                                |               |
| datasetFragment$data.name               | `string`                                                        |               |
| datasetFragment$data.parentMediaType    | `Union<` `string` `,` `null` `>`                                |               |
| datasetFragment$data.skeletons          | `ReadonlyArray <  >` `<` `Object` `>`                           |               |
| datasetFragment$data.version            | `Union<` `string` `,` `null` `>`                                |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetfragment-key"></a>

### *class* @fiftyone/relay.datasetFragment$key()

### datasetFragment$key

| Name                                  | Type                                            | Description   |
|---------------------------------------|-------------------------------------------------|---------------|
| datasetFragment$key. $data            | `plugins.fiftyone.relay.datasetFragment$data`   |               |
| datasetFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'datasetFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetquery"></a>

### *class* @fiftyone/relay.datasetQuery()

### datasetQuery

| Name                   | Type                                            | Description   |
|------------------------|-------------------------------------------------|---------------|
| datasetQuery.response  | `plugins.fiftyone.relay.datasetQuery$data`      |               |
| datasetQuery.variables | `plugins.fiftyone.relay.datasetQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetquery-data"></a>

### *class* @fiftyone/relay.datasetQuery$data()

### datasetQuery$data

| Name                                | Type                                             | Description   |
|-------------------------------------|--------------------------------------------------|---------------|
| datasetQuery$data. $fragmentSpreads | `FragmentRefs <  >` `<` `Union<  ,  ,  ,  >` `>` |               |
| datasetQuery$data.config            | `Object`                                         |               |
| datasetQuery$data.dataset           | `Union<` `Object` `,` `null` `>`                 |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetquery-variables"></a>

### *class* @fiftyone/relay.datasetQuery$variables()

### datasetQuery$variables

| Name                                 | Type                             | Description   |
|--------------------------------------|----------------------------------|---------------|
| datasetQuery$variables.extendedView  | `Array<` `any` `>`               |               |
| datasetQuery$variables.name          | `string`                         |               |
| datasetQuery$variables.savedViewSlug | `Union<` `string` `,` `null` `>` |               |
| datasetQuery$variables.view          | `Array<` `any` `>`               |               |
| datasetQuery$variables.workspaceSlug | `Union<` `string` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-deletesavedviewmutation"></a>

### *class* @fiftyone/relay.deleteSavedViewMutation()

### deleteSavedViewMutation

| Name                              | Type                                                       | Description   |
|-----------------------------------|------------------------------------------------------------|---------------|
| deleteSavedViewMutation.response  | `plugins.fiftyone.relay.deleteSavedViewMutation$data`      |               |
| deleteSavedViewMutation.variables | `plugins.fiftyone.relay.deleteSavedViewMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-deletesavedviewmutation-data"></a>

### *class* @fiftyone/relay.deleteSavedViewMutation$data()

### deleteSavedViewMutation$data

| Name                                         | Type                             | Description   |
|----------------------------------------------|----------------------------------|---------------|
| deleteSavedViewMutation$data.deleteSavedView | `Union<` `string` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-deletesavedviewmutation-variables"></a>

### *class* @fiftyone/relay.deleteSavedViewMutation$variables()

### deleteSavedViewMutation$variables

| Name                                           | Type                             | Description   |
|------------------------------------------------|----------------------------------|---------------|
| deleteSavedViewMutation$variables.datasetName  | `Union<` `string` `,` `null` `>` |               |
| deleteSavedViewMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| deleteSavedViewMutation$variables.subscription | `string`                         |               |
| deleteSavedViewMutation$variables.viewName     | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-estimatedcountsfragment-data"></a>

### *class* @fiftyone/relay.estimatedCountsFragment$data()

### estimatedCountsFragment$data

| Name                                              | Type                             | Description   |
|---------------------------------------------------|----------------------------------|---------------|
| estimatedCountsFragment$data. $fragmentType       | `'estimatedCountsFragment'`      |               |
| estimatedCountsFragment$data.estimatedFrameCount  | `Union<` `number` `,` `null` `>` |               |
| estimatedCountsFragment$data.estimatedSampleCount | `number`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-estimatedcountsfragment-key"></a>

### *class* @fiftyone/relay.estimatedCountsFragment$key()

### estimatedCountsFragment$key

| Name                                          | Type                                                    | Description   |
|-----------------------------------------------|---------------------------------------------------------|---------------|
| estimatedCountsFragment$key. $data            | `plugins.fiftyone.relay.estimatedCountsFragment$data`   |               |
| estimatedCountsFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'estimatedCountsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-framefieldsfragment-data"></a>

### *class* @fiftyone/relay.frameFieldsFragment$data()

### frameFieldsFragment$data

| Name                                    | Type                                         | Description   |
|-----------------------------------------|----------------------------------------------|---------------|
| frameFieldsFragment$data. $fragmentType | `'frameFieldsFragment'`                      |               |
| frameFieldsFragment$data.frameFields    | `Union<` `ReadonlyArray <  >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-framefieldsfragment-key"></a>

### *class* @fiftyone/relay.frameFieldsFragment$key()

### frameFieldsFragment$key

| Name                                      | Type                                                | Description   |
|-------------------------------------------|-----------------------------------------------------|---------------|
| frameFieldsFragment$key. $data            | `plugins.fiftyone.relay.frameFieldsFragment$data`   |               |
| frameFieldsFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'frameFieldsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-groupslicefragment-data"></a>

### *class* @fiftyone/relay.groupSliceFragment$data()

### groupSliceFragment$data

| Name                                      | Type                             | Description   |
|-------------------------------------------|----------------------------------|---------------|
| groupSliceFragment$data. $fragmentType    | `'groupSliceFragment'`           |               |
| groupSliceFragment$data.defaultGroupSlice | `Union<` `string` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-groupslicefragment-key"></a>

### *class* @fiftyone/relay.groupSliceFragment$key()

### groupSliceFragment$key

| Name                                     | Type                                               | Description   |
|------------------------------------------|----------------------------------------------------|---------------|
| groupSliceFragment$key. $data            | `plugins.fiftyone.relay.groupSliceFragment$data`   |               |
| groupSliceFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'groupSliceFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-histogramvaluesquery"></a>

### *class* @fiftyone/relay.histogramValuesQuery()

### histogramValuesQuery

| Name                           | Type                                                    | Description   |
|--------------------------------|---------------------------------------------------------|---------------|
| histogramValuesQuery.response  | `plugins.fiftyone.relay.histogramValuesQuery$data`      |               |
| histogramValuesQuery.variables | `plugins.fiftyone.relay.histogramValuesQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-histogramvaluesquery-data"></a>

### *class* @fiftyone/relay.histogramValuesQuery$data()

### histogramValuesQuery$data

| Name                                | Type                                              | Description   |
|-------------------------------------|---------------------------------------------------|---------------|
| histogramValuesQuery$data.aggregate | `ReadonlyArray <  >` `<` `Union<  ,  ,  ,  >` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-histogramvaluesquery-variables"></a>

### *class* @fiftyone/relay.histogramValuesQuery$variables()

### histogramValuesQuery$variables

| Name                                   | Type                                                              | Description   |
|----------------------------------------|-------------------------------------------------------------------|---------------|
| histogramValuesQuery$variables.dataset | `string`                                                          |               |
| histogramValuesQuery$variables.form    | `Union<` `plugins.fiftyone.relay.ExtendedViewForm` `,` `null` `>` |               |
| histogramValuesQuery$variables.path    | `string`                                                          |               |
| histogramValuesQuery$variables.view    | `Array<` `any` `>`                                                |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-indexesfragment-data"></a>

### *class* @fiftyone/relay.indexesFragment$data()

### indexesFragment$data

| Name                                | Type                                         | Description   |
|-------------------------------------|----------------------------------------------|---------------|
| indexesFragment$data. $fragmentType | `'indexesFragment'`                          |               |
| indexesFragment$data.frameIndexes   | `Union<` `ReadonlyArray <  >` `,` `null` `>` |               |
| indexesFragment$data.sampleIndexes  | `Union<` `ReadonlyArray <  >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-indexesfragment-key"></a>

### *class* @fiftyone/relay.indexesFragment$key()

### indexesFragment$key

| Name                                  | Type                                            | Description   |
|---------------------------------------|-------------------------------------------------|---------------|
| indexesFragment$key. $data            | `plugins.fiftyone.relay.indexesFragment$data`   |               |
| indexesFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'indexesFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-lightningquery"></a>

### *class* @fiftyone/relay.lightningQuery()

### lightningQuery

| Name                     | Type                                              | Description   |
|--------------------------|---------------------------------------------------|---------------|
| lightningQuery.response  | `plugins.fiftyone.relay.lightningQuery$data`      |               |
| lightningQuery.variables | `plugins.fiftyone.relay.lightningQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-lightningquery-data"></a>

### *class* @fiftyone/relay.lightningQuery$data()

### lightningQuery$data

| Name                          | Type                                                          | Description   |
|-------------------------------|---------------------------------------------------------------|---------------|
| lightningQuery$data.lightning | `ReadonlyArray <  >` `<` `Union<  ,  ,  ,  ,  ,  ,  ,  >` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-lightningquery-variables"></a>

### *class* @fiftyone/relay.lightningQuery$variables()

### lightningQuery$variables

| Name                           | Type                                    | Description   |
|--------------------------------|-----------------------------------------|---------------|
| lightningQuery$variables.input | `plugins.fiftyone.relay.LightningInput` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mainsamplequery"></a>

### *class* @fiftyone/relay.mainSampleQuery()

### mainSampleQuery

| Name                      | Type                                               | Description   |
|---------------------------|----------------------------------------------------|---------------|
| mainSampleQuery.response  | `plugins.fiftyone.relay.mainSampleQuery$data`      |               |
| mainSampleQuery.variables | `plugins.fiftyone.relay.mainSampleQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mainsamplequery-data"></a>

### *class* @fiftyone/relay.mainSampleQuery$data()

### mainSampleQuery$data

| Name                        | Type                                                                                              | Description   |
|-----------------------------|---------------------------------------------------------------------------------------------------|---------------|
| mainSampleQuery$data.sample | `Union<` `Object` `,` `Object` `,` `Object` `,` `Object` `,` `Object` `,` `Object` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mainsamplequery-variables"></a>

### *class* @fiftyone/relay.mainSampleQuery$variables()

### mainSampleQuery$variables

| Name                              | Type                                  | Description   |
|-----------------------------------|---------------------------------------|---------------|
| mainSampleQuery$variables.dataset | `string`                              |               |
| mainSampleQuery$variables.filter  | `plugins.fiftyone.relay.SampleFilter` |               |
| mainSampleQuery$variables.filters | `Union<` `object` `,` `null` `>`      |               |
| mainSampleQuery$variables.view    | `Array<` `any` `>`                    |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mediafieldsfragment-data"></a>

### *class* @fiftyone/relay.mediaFieldsFragment$data()

### mediaFieldsFragment$data

| Name                                    | Type                                  | Description   |
|-----------------------------------------|---------------------------------------|---------------|
| mediaFieldsFragment$data. $fragmentType | `'mediaFieldsFragment'`               |               |
| mediaFieldsFragment$data.appConfig      | `Union<` `Object` `,` `null` `>`      |               |
| mediaFieldsFragment$data.name           | `string`                              |               |
| mediaFieldsFragment$data.sampleFields   | `ReadonlyArray <  >` `<` `Object` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mediafieldsfragment-key"></a>

### *class* @fiftyone/relay.mediaFieldsFragment$key()

### mediaFieldsFragment$key

| Name                                      | Type                                                | Description   |
|-------------------------------------------|-----------------------------------------------------|---------------|
| mediaFieldsFragment$key. $data            | `plugins.fiftyone.relay.mediaFieldsFragment$data`   |               |
| mediaFieldsFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'mediaFieldsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mediatypefragment-data"></a>

### *class* @fiftyone/relay.mediaTypeFragment$data()

### mediaTypeFragment$data

| Name                                  | Type                             | Description   |
|---------------------------------------|----------------------------------|---------------|
| mediaTypeFragment$data. $fragmentType | `'mediaTypeFragment'`            |               |
| mediaTypeFragment$data.mediaType      | `Union<` `string` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mediatypefragment-key"></a>

### *class* @fiftyone/relay.mediaTypeFragment$key()

### mediaTypeFragment$key

| Name                                    | Type                                              | Description   |
|-----------------------------------------|---------------------------------------------------|---------------|
| mediaTypeFragment$key. $data            | `plugins.fiftyone.relay.mediaTypeFragment$data`   |               |
| mediaTypeFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'mediaTypeFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-paginatesamplesquery"></a>

### *class* @fiftyone/relay.paginateSamplesQuery()

### paginateSamplesQuery

| Name                           | Type                                                    | Description   |
|--------------------------------|---------------------------------------------------------|---------------|
| paginateSamplesQuery.response  | `plugins.fiftyone.relay.paginateSamplesQuery$data`      |               |
| paginateSamplesQuery.variables | `plugins.fiftyone.relay.paginateSamplesQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-paginatesamplesquery-data"></a>

### *class* @fiftyone/relay.paginateSamplesQuery$data()

### paginateSamplesQuery$data

| Name                              | Type                                            | Description   |
|-----------------------------------|-------------------------------------------------|---------------|
| paginateSamplesQuery$data.samples | `Union<` `Object` `,` `Object` `,` `Object` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-paginatesamplesquery-variables"></a>

### *class* @fiftyone/relay.paginateSamplesQuery$variables()

### paginateSamplesQuery$variables

| Name                                          | Type                                  | Description   |
|-----------------------------------------------|---------------------------------------|---------------|
| paginateSamplesQuery$variables.after          | `Union<` `string` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.count          | `Union<` `number` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.dataset        | `string`                              |               |
| paginateSamplesQuery$variables.desc           | `Union<` `boolean` `,` `null` `>`     |               |
| paginateSamplesQuery$variables.dynamicGroup   | `Union<` `object` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.extendedStages | `Union<` `object` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.filter         | `plugins.fiftyone.relay.SampleFilter` |               |
| paginateSamplesQuery$variables.filters        | `Union<` `object` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.hint           | `Union<` `string` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.maxQueryTime   | `Union<` `number` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.paginationData | `Union<` `boolean` `,` `null` `>`     |               |
| paginateSamplesQuery$variables.sortBy         | `Union<` `string` `,` `null` `>`      |               |
| paginateSamplesQuery$variables.view           | `Array<` `any` `>`                    |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-samplefieldsfragment-data"></a>

### *class* @fiftyone/relay.sampleFieldsFragment$data()

### sampleFieldsFragment$data

| Name                                     | Type                                  | Description   |
|------------------------------------------|---------------------------------------|---------------|
| sampleFieldsFragment$data. $fragmentType | `'sampleFieldsFragment'`              |               |
| sampleFieldsFragment$data.sampleFields   | `ReadonlyArray <  >` `<` `Object` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-samplefieldsfragment-key"></a>

### *class* @fiftyone/relay.sampleFieldsFragment$key()

### sampleFieldsFragment$key

| Name                                       | Type                                                 | Description   |
|--------------------------------------------|------------------------------------------------------|---------------|
| sampleFieldsFragment$key. $data            | `plugins.fiftyone.relay.sampleFieldsFragment$data`   |               |
| sampleFieldsFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'sampleFieldsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-savedviewsfragment-data"></a>

### *class* @fiftyone/relay.savedViewsFragment$data()

### savedViewsFragment$data

| Name                                   | Type                                         | Description   |
|----------------------------------------|----------------------------------------------|---------------|
| savedViewsFragment$data. $fragmentType | `'savedViewsFragment'`                       |               |
| savedViewsFragment$data.savedViews     | `Union<` `ReadonlyArray <  >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-savedviewsfragment-key"></a>

### *class* @fiftyone/relay.savedViewsFragment$key()

### savedViewsFragment$key

| Name                                     | Type                                               | Description   |
|------------------------------------------|----------------------------------------------------|---------------|
| savedViewsFragment$key. $data            | `plugins.fiftyone.relay.savedViewsFragment$data`   |               |
| savedViewsFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'savedViewsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-savedviewsfragmentquery"></a>

### *class* @fiftyone/relay.savedViewsFragmentQuery()

### savedViewsFragmentQuery

| Name                              | Type                                                       | Description   |
|-----------------------------------|------------------------------------------------------------|---------------|
| savedViewsFragmentQuery.response  | `plugins.fiftyone.relay.savedViewsFragmentQuery$data`      |               |
| savedViewsFragmentQuery.variables | `plugins.fiftyone.relay.savedViewsFragmentQuery$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-savedviewsfragmentquery-data"></a>

### *class* @fiftyone/relay.savedViewsFragmentQuery$data()

### savedViewsFragmentQuery$data

| Name                                           | Type                                               | Description   |
|------------------------------------------------|----------------------------------------------------|---------------|
| savedViewsFragmentQuery$data. $fragmentSpreads | `FragmentRefs <  >` `<` `'savedViewsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-savedviewsfragmentquery-variables"></a>

### *class* @fiftyone/relay.savedViewsFragmentQuery$variables()

### savedViewsFragmentQuery$variables

| Name                                   | Type     | Description   |
|----------------------------------------|----------|---------------|
| savedViewsFragmentQuery$variables.name | `string` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-searchselectfieldsmutation"></a>

### *class* @fiftyone/relay.searchSelectFieldsMutation()

### searchSelectFieldsMutation

| Name                                 | Type                                                          | Description   |
|--------------------------------------|---------------------------------------------------------------|---------------|
| searchSelectFieldsMutation.response  | `plugins.fiftyone.relay.searchSelectFieldsMutation$data`      |               |
| searchSelectFieldsMutation.variables | `plugins.fiftyone.relay.searchSelectFieldsMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-searchselectfieldsmutation-data"></a>

### *class* @fiftyone/relay.searchSelectFieldsMutation$data()

### searchSelectFieldsMutation$data

| Name                                               | Type                                        | Description   |
|----------------------------------------------------|---------------------------------------------|---------------|
| searchSelectFieldsMutation$data.searchSelectFields | `ReadonlyArray < string >` `<` `string` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-searchselectfieldsmutation-variables"></a>

### *class* @fiftyone/relay.searchSelectFieldsMutation$variables()

### searchSelectFieldsMutation$variables

| Name                                             | Type                             | Description   |
|--------------------------------------------------|----------------------------------|---------------|
| searchSelectFieldsMutation$variables.datasetName | `string`                         |               |
| searchSelectFieldsMutation$variables.metaFilter  | `Union<` `object` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setcolorschememutation"></a>

### *class* @fiftyone/relay.setColorSchemeMutation()

### setColorSchemeMutation

| Name                             | Type                                                      | Description   |
|----------------------------------|-----------------------------------------------------------|---------------|
| setColorSchemeMutation.response  | `plugins.fiftyone.relay.setColorSchemeMutation$data`      |               |
| setColorSchemeMutation.variables | `plugins.fiftyone.relay.setColorSchemeMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setcolorschememutation-data"></a>

### *class* @fiftyone/relay.setColorSchemeMutation$data()

### setColorSchemeMutation$data

| Name                                       | Type     | Description   |
|--------------------------------------------|----------|---------------|
| setColorSchemeMutation$data.setColorScheme | `Object` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setcolorschememutation-variables"></a>

### *class* @fiftyone/relay.setColorSchemeMutation$variables()

### setColorSchemeMutation$variables

| Name                                          | Type                                      | Description   |
|-----------------------------------------------|-------------------------------------------|---------------|
| setColorSchemeMutation$variables.colorScheme  | `plugins.fiftyone.relay.ColorSchemeInput` |               |
| setColorSchemeMutation$variables.subscription | `string`                                  |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdatasetcolorschememutation"></a>

### *class* @fiftyone/relay.setDatasetColorSchemeMutation()

### setDatasetColorSchemeMutation

| Name                                    | Type                                                             | Description   |
|-----------------------------------------|------------------------------------------------------------------|---------------|
| setDatasetColorSchemeMutation.response  | `plugins.fiftyone.relay.setDatasetColorSchemeMutation$data`      |               |
| setDatasetColorSchemeMutation.variables | `plugins.fiftyone.relay.setDatasetColorSchemeMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdatasetcolorschememutation-data"></a>

### *class* @fiftyone/relay.setDatasetColorSchemeMutation$data()

### setDatasetColorSchemeMutation$data

| Name                                                     | Type                             | Description   |
|----------------------------------------------------------|----------------------------------|---------------|
| setDatasetColorSchemeMutation$data.setDatasetColorScheme | `Union<` `Object` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdatasetcolorschememutation-variables"></a>

### *class* @fiftyone/relay.setDatasetColorSchemeMutation$variables()

### setDatasetColorSchemeMutation$variables

| Name                                                 | Type                                                              | Description   |
|------------------------------------------------------|-------------------------------------------------------------------|---------------|
| setDatasetColorSchemeMutation$variables.colorScheme  | `Union<` `plugins.fiftyone.relay.ColorSchemeInput` `,` `null` `>` |               |
| setDatasetColorSchemeMutation$variables.datasetName  | `string`                                                          |               |
| setDatasetColorSchemeMutation$variables.subscription | `string`                                                          |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdatasetmutation"></a>

### *class* @fiftyone/relay.setDatasetMutation()

### setDatasetMutation

| Name                         | Type                                                  | Description   |
|------------------------------|-------------------------------------------------------|---------------|
| setDatasetMutation.response  | `plugins.fiftyone.relay.setDatasetMutation$data`      |               |
| setDatasetMutation.variables | `plugins.fiftyone.relay.setDatasetMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdatasetmutation-data"></a>

### *class* @fiftyone/relay.setDatasetMutation$data()

### setDatasetMutation$data

| Name                               | Type      | Description   |
|------------------------------------|-----------|---------------|
| setDatasetMutation$data.setDataset | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdatasetmutation-variables"></a>

### *class* @fiftyone/relay.setDatasetMutation$variables()

### setDatasetMutation$variables

| Name                                      | Type                             | Description   |
|-------------------------------------------|----------------------------------|---------------|
| setDatasetMutation$variables.name         | `Union<` `string` `,` `null` `>` |               |
| setDatasetMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| setDatasetMutation$variables.subscription | `string`                         |               |
| setDatasetMutation$variables.viewName     | `Union<` `string` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setfieldvisibilitystagemutation"></a>

### *class* @fiftyone/relay.setFieldVisibilityStageMutation()

### setFieldVisibilityStageMutation

| Name                                      | Type                                                               | Description   |
|-------------------------------------------|--------------------------------------------------------------------|---------------|
| setFieldVisibilityStageMutation.response  | `plugins.fiftyone.relay.setFieldVisibilityStageMutation$data`      |               |
| setFieldVisibilityStageMutation.variables | `plugins.fiftyone.relay.setFieldVisibilityStageMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setfieldvisibilitystagemutation-data"></a>

### *class* @fiftyone/relay.setFieldVisibilityStageMutation$data()

### setFieldVisibilityStageMutation$data

| Name                                                         | Type      | Description   |
|--------------------------------------------------------------|-----------|---------------|
| setFieldVisibilityStageMutation$data.setFieldVisibilityStage | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setfieldvisibilitystagemutation-variables"></a>

### *class* @fiftyone/relay.setFieldVisibilityStageMutation$variables()

### setFieldVisibilityStageMutation$variables

| Name                                                   | Type                             | Description   |
|--------------------------------------------------------|----------------------------------|---------------|
| setFieldVisibilityStageMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| setFieldVisibilityStageMutation$variables.stage        | `Union<` `object` `,` `null` `>` |               |
| setFieldVisibilityStageMutation$variables.subscription | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setgroupslicemutation"></a>

### *class* @fiftyone/relay.setGroupSliceMutation()

### setGroupSliceMutation

| Name                            | Type                                                     | Description   |
|---------------------------------|----------------------------------------------------------|---------------|
| setGroupSliceMutation.response  | `plugins.fiftyone.relay.setGroupSliceMutation$data`      |               |
| setGroupSliceMutation.variables | `plugins.fiftyone.relay.setGroupSliceMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setgroupslicemutation-data"></a>

### *class* @fiftyone/relay.setGroupSliceMutation$data()

### setGroupSliceMutation$data

| Name                                     | Type      | Description   |
|------------------------------------------|-----------|---------------|
| setGroupSliceMutation$data.setGroupSlice | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setgroupslicemutation-variables"></a>

### *class* @fiftyone/relay.setGroupSliceMutation$variables()

### setGroupSliceMutation$variables

| Name                                         | Type                             | Description   |
|----------------------------------------------|----------------------------------|---------------|
| setGroupSliceMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| setGroupSliceMutation$variables.slice        | `Union<` `string` `,` `null` `>` |               |
| setGroupSliceMutation$variables.subscription | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setlabelselectionstylemutation"></a>

### *class* @fiftyone/relay.setLabelSelectionStyleMutation()

### setLabelSelectionStyleMutation

| Name                                     | Type                                                              | Description   |
|------------------------------------------|-------------------------------------------------------------------|---------------|
| setLabelSelectionStyleMutation.response  | `plugins.fiftyone.relay.setLabelSelectionStyleMutation$data`      |               |
| setLabelSelectionStyleMutation.variables | `plugins.fiftyone.relay.setLabelSelectionStyleMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setlabelselectionstylemutation-data"></a>

### *class* @fiftyone/relay.setLabelSelectionStyleMutation$data()

### setLabelSelectionStyleMutation$data

| Name                                                       | Type      | Description   |
|------------------------------------------------------------|-----------|---------------|
| setLabelSelectionStyleMutation$data.setLabelSelectionStyle | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setlabelselectionstylemutation-variables"></a>

### *class* @fiftyone/relay.setLabelSelectionStyleMutation$variables()

### setLabelSelectionStyleMutation$variables

| Name                                                  | Type                             | Description   |
|-------------------------------------------------------|----------------------------------|---------------|
| setLabelSelectionStyleMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| setLabelSelectionStyleMutation$variables.style        | `object`                         |               |
| setLabelSelectionStyleMutation$variables.subscription | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsamplemutation"></a>

### *class* @fiftyone/relay.setSampleMutation()

### setSampleMutation

| Name                        | Type                                                 | Description   |
|-----------------------------|------------------------------------------------------|---------------|
| setSampleMutation.response  | `plugins.fiftyone.relay.setSampleMutation$data`      |               |
| setSampleMutation.variables | `plugins.fiftyone.relay.setSampleMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsamplemutation-data"></a>

### *class* @fiftyone/relay.setSampleMutation$data()

### setSampleMutation$data

| Name                             | Type      | Description   |
|----------------------------------|-----------|---------------|
| setSampleMutation$data.setSample | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsamplemutation-variables"></a>

### *class* @fiftyone/relay.setSampleMutation$variables()

### setSampleMutation$variables

| Name                                     | Type                             | Description   |
|------------------------------------------|----------------------------------|---------------|
| setSampleMutation$variables.groupId      | `Union<` `string` `,` `null` `>` |               |
| setSampleMutation$variables.id           | `Union<` `string` `,` `null` `>` |               |
| setSampleMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| setSampleMutation$variables.subscription | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsampleselectionstylemutation"></a>

### *class* @fiftyone/relay.setSampleSelectionStyleMutation()

### setSampleSelectionStyleMutation

| Name                                      | Type                                                               | Description   |
|-------------------------------------------|--------------------------------------------------------------------|---------------|
| setSampleSelectionStyleMutation.response  | `plugins.fiftyone.relay.setSampleSelectionStyleMutation$data`      |               |
| setSampleSelectionStyleMutation.variables | `plugins.fiftyone.relay.setSampleSelectionStyleMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsampleselectionstylemutation-data"></a>

### *class* @fiftyone/relay.setSampleSelectionStyleMutation$data()

### setSampleSelectionStyleMutation$data

| Name                                                         | Type      | Description   |
|--------------------------------------------------------------|-----------|---------------|
| setSampleSelectionStyleMutation$data.setSampleSelectionStyle | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsampleselectionstylemutation-variables"></a>

### *class* @fiftyone/relay.setSampleSelectionStyleMutation$variables()

### setSampleSelectionStyleMutation$variables

| Name                                                   | Type                             | Description   |
|--------------------------------------------------------|----------------------------------|---------------|
| setSampleSelectionStyleMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| setSampleSelectionStyleMutation$variables.style        | `object`                         |               |
| setSampleSelectionStyleMutation$variables.subscription | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedlabelsmutation"></a>

### *class* @fiftyone/relay.setSelectedLabelsMutation()

### setSelectedLabelsMutation

| Name                                | Type                                                         | Description   |
|-------------------------------------|--------------------------------------------------------------|---------------|
| setSelectedLabelsMutation.response  | `plugins.fiftyone.relay.setSelectedLabelsMutation$data`      |               |
| setSelectedLabelsMutation.variables | `plugins.fiftyone.relay.setSelectedLabelsMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedlabelsmutation-data"></a>

### *class* @fiftyone/relay.setSelectedLabelsMutation$data()

### setSelectedLabelsMutation$data

| Name                                             | Type      | Description   |
|--------------------------------------------------|-----------|---------------|
| setSelectedLabelsMutation$data.setSelectedLabels | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedlabelsmutation-variables"></a>

### *class* @fiftyone/relay.setSelectedLabelsMutation$variables()

### setSelectedLabelsMutation$variables

| Name                                               | Type                                                                             | Description   |
|----------------------------------------------------|----------------------------------------------------------------------------------|---------------|
| setSelectedLabelsMutation$variables.selectedLabels | `ReadonlyArray < SelectedLabel >` `<` `plugins.fiftyone.relay.SelectedLabel` `>` |               |
| setSelectedLabelsMutation$variables.session        | `Union<` `string` `,` `null` `>`                                                 |               |
| setSelectedLabelsMutation$variables.subscription   | `string`                                                                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedmutation"></a>

### *class* @fiftyone/relay.setSelectedMutation()

### setSelectedMutation

| Name                          | Type                                                   | Description   |
|-------------------------------|--------------------------------------------------------|---------------|
| setSelectedMutation.response  | `plugins.fiftyone.relay.setSelectedMutation$data`      |               |
| setSelectedMutation.variables | `plugins.fiftyone.relay.setSelectedMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedmutation-data"></a>

### *class* @fiftyone/relay.setSelectedMutation$data()

### setSelectedMutation$data

| Name                                 | Type      | Description   |
|--------------------------------------|-----------|---------------|
| setSelectedMutation$data.setSelected | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedmutation-variables"></a>

### *class* @fiftyone/relay.setSelectedMutation$variables()

### setSelectedMutation$variables

| Name                                       | Type                                        | Description   |
|--------------------------------------------|---------------------------------------------|---------------|
| setSelectedMutation$variables.selected     | `ReadonlyArray < string >` `<` `string` `>` |               |
| setSelectedMutation$variables.session      | `Union<` `string` `,` `null` `>`            |               |
| setSelectedMutation$variables.subscription | `string`                                    |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedsamplesmutation"></a>

### *class* @fiftyone/relay.setSelectedSamplesMutation()

### setSelectedSamplesMutation

| Name                                 | Type                                                          | Description   |
|--------------------------------------|---------------------------------------------------------------|---------------|
| setSelectedSamplesMutation.response  | `plugins.fiftyone.relay.setSelectedSamplesMutation$data`      |               |
| setSelectedSamplesMutation.variables | `plugins.fiftyone.relay.setSelectedSamplesMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedsamplesmutation-data"></a>

### *class* @fiftyone/relay.setSelectedSamplesMutation$data()

### setSelectedSamplesMutation$data

| Name                                               | Type      | Description   |
|----------------------------------------------------|-----------|---------------|
| setSelectedSamplesMutation$data.setSelectedSamples | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedsamplesmutation-variables"></a>

### *class* @fiftyone/relay.setSelectedSamplesMutation$variables()

### setSelectedSamplesMutation$variables

| Name                                                 | Type                             | Description   |
|------------------------------------------------------|----------------------------------|---------------|
| setSelectedSamplesMutation$variables.selectedSamples | `object`                         |               |
| setSelectedSamplesMutation$variables.session         | `Union<` `string` `,` `null` `>` |               |
| setSelectedSamplesMutation$variables.subscription    | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsidebargroupsmutation"></a>

### *class* @fiftyone/relay.setSidebarGroupsMutation()

### setSidebarGroupsMutation

| Name                               | Type                                                        | Description   |
|------------------------------------|-------------------------------------------------------------|---------------|
| setSidebarGroupsMutation.response  | `plugins.fiftyone.relay.setSidebarGroupsMutation$data`      |               |
| setSidebarGroupsMutation.variables | `plugins.fiftyone.relay.setSidebarGroupsMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsidebargroupsmutation-data"></a>

### *class* @fiftyone/relay.setSidebarGroupsMutation$data()

### setSidebarGroupsMutation$data

| Name                                           | Type      | Description   |
|------------------------------------------------|-----------|---------------|
| setSidebarGroupsMutation$data.setSidebarGroups | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsidebargroupsmutation-variables"></a>

### *class* @fiftyone/relay.setSidebarGroupsMutation$variables()

### setSidebarGroupsMutation$variables

| Name                                             | Type                                                                                     | Description   |
|--------------------------------------------------|------------------------------------------------------------------------------------------|---------------|
| setSidebarGroupsMutation$variables.dataset       | `string`                                                                                 |               |
| setSidebarGroupsMutation$variables.session       | `Union<` `string` `,` `null` `>`                                                         |               |
| setSidebarGroupsMutation$variables.sidebarGroups | `ReadonlyArray < SidebarGroupInput >` `<` `plugins.fiftyone.relay.SidebarGroupInput` `>` |               |
| setSidebarGroupsMutation$variables.stages        | `Array<` `any` `>`                                                                       |               |
| setSidebarGroupsMutation$variables.subscription  | `string`                                                                                 |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setspacesmutation"></a>

### *class* @fiftyone/relay.setSpacesMutation()

### setSpacesMutation

| Name                        | Type                                                 | Description   |
|-----------------------------|------------------------------------------------------|---------------|
| setSpacesMutation.response  | `plugins.fiftyone.relay.setSpacesMutation$data`      |               |
| setSpacesMutation.variables | `plugins.fiftyone.relay.setSpacesMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setspacesmutation-data"></a>

### *class* @fiftyone/relay.setSpacesMutation$data()

### setSpacesMutation$data

| Name                             | Type      | Description   |
|----------------------------------|-----------|---------------|
| setSpacesMutation$data.setSpaces | `boolean` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setspacesmutation-variables"></a>

### *class* @fiftyone/relay.setSpacesMutation$variables()

### setSpacesMutation$variables

| Name                                     | Type                             | Description   |
|------------------------------------------|----------------------------------|---------------|
| setSpacesMutation$variables.session      | `Union<` `string` `,` `null` `>` |               |
| setSpacesMutation$variables.spaces       | `object`                         |               |
| setSpacesMutation$variables.subscription | `string`                         |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setviewmutation"></a>

### *class* @fiftyone/relay.setViewMutation()

### setViewMutation

| Name                      | Type                                               | Description   |
|---------------------------|----------------------------------------------------|---------------|
| setViewMutation.response  | `plugins.fiftyone.relay.setViewMutation$data`      |               |
| setViewMutation.variables | `plugins.fiftyone.relay.setViewMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setviewmutation-data"></a>

### *class* @fiftyone/relay.setViewMutation$data()

### setViewMutation$data

| Name                         | Type                                   | Description   |
|------------------------------|----------------------------------------|---------------|
| setViewMutation$data.setView | `Union<` `Array< any >` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setviewmutation-variables"></a>

### *class* @fiftyone/relay.setViewMutation$variables()

### setViewMutation$variables

| Name                                    | Type                               | Description   |
|-----------------------------------------|------------------------------------|---------------|
| setViewMutation$variables.datasetName   | `string`                           |               |
| setViewMutation$variables.form          | `plugins.fiftyone.relay.StateForm` |               |
| setViewMutation$variables.savedViewSlug | `Union<` `string` `,` `null` `>`   |               |
| setViewMutation$variables.session       | `Union<` `string` `,` `null` `>`   |               |
| setViewMutation$variables.subscription  | `string`                           |               |
| setViewMutation$variables.view          | `Array<` `any` `>`                 |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-sidebargroupsfragment-data"></a>

### *class* @fiftyone/relay.sidebarGroupsFragment$data()

### sidebarGroupsFragment$data

| Name                                         | Type                                       | Description   |
|----------------------------------------------|--------------------------------------------|---------------|
| sidebarGroupsFragment$data. $fragmentSpreads | `FragmentRefs <  >` `<` `Union<  ,  >` `>` |               |
| sidebarGroupsFragment$data. $fragmentType    | `'sidebarGroupsFragment'`                  |               |
| sidebarGroupsFragment$data.appConfig         | `Union<` `Object` `,` `null` `>`           |               |
| sidebarGroupsFragment$data.datasetId         | `string`                                   |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-sidebargroupsfragment-key"></a>

### *class* @fiftyone/relay.sidebarGroupsFragment$key()

### sidebarGroupsFragment$key

| Name                                        | Type                                                  | Description   |
|---------------------------------------------|-------------------------------------------------------|---------------|
| sidebarGroupsFragment$key. $data            | `plugins.fiftyone.relay.sidebarGroupsFragment$data`   |               |
| sidebarGroupsFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'sidebarGroupsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-stagedefinitionsfragment-data"></a>

### *class* @fiftyone/relay.stageDefinitionsFragment$data()

### stageDefinitionsFragment$data

| Name                                           | Type                                  | Description   |
|------------------------------------------------|---------------------------------------|---------------|
| stageDefinitionsFragment$data. $fragmentType   | `'stageDefinitionsFragment'`          |               |
| stageDefinitionsFragment$data.stageDefinitions | `ReadonlyArray <  >` `<` `Object` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-stagedefinitionsfragment-key"></a>

### *class* @fiftyone/relay.stageDefinitionsFragment$key()

### stageDefinitionsFragment$key

| Name                                           | Type                                                     | Description   |
|------------------------------------------------|----------------------------------------------------------|---------------|
| stageDefinitionsFragment$key. $data            | `plugins.fiftyone.relay.stageDefinitionsFragment$data`   |               |
| stageDefinitionsFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'stageDefinitionsFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-updatesavedviewmutation"></a>

### *class* @fiftyone/relay.updateSavedViewMutation()

### updateSavedViewMutation

| Name                              | Type                                                       | Description   |
|-----------------------------------|------------------------------------------------------------|---------------|
| updateSavedViewMutation.response  | `plugins.fiftyone.relay.updateSavedViewMutation$data`      |               |
| updateSavedViewMutation.variables | `plugins.fiftyone.relay.updateSavedViewMutation$variables` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-updatesavedviewmutation-data"></a>

### *class* @fiftyone/relay.updateSavedViewMutation$data()

### updateSavedViewMutation$data

| Name                                         | Type                             | Description   |
|----------------------------------------------|----------------------------------|---------------|
| updateSavedViewMutation$data.updateSavedView | `Union<` `Object` `,` `null` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-updatesavedviewmutation-variables"></a>

### *class* @fiftyone/relay.updateSavedViewMutation$variables()

### updateSavedViewMutation$variables

| Name                                           | Type                                   | Description   |
|------------------------------------------------|----------------------------------------|---------------|
| updateSavedViewMutation$variables.datasetName  | `Union<` `string` `,` `null` `>`       |               |
| updateSavedViewMutation$variables.session      | `Union<` `string` `,` `null` `>`       |               |
| updateSavedViewMutation$variables.subscription | `string`                               |               |
| updateSavedViewMutation$variables.updatedInfo  | `plugins.fiftyone.relay.SavedViewInfo` |               |
| updateSavedViewMutation$variables.viewName     | `string`                               |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-viewfragment-data"></a>

### *class* @fiftyone/relay.viewFragment$data()

### viewFragment$data

| Name                             | Type                                   | Description   |
|----------------------------------|----------------------------------------|---------------|
| viewFragment$data. $fragmentType | `'viewFragment'`                       |               |
| viewFragment$data.stages         | `Union<` `Array< any >` `,` `null` `>` |               |
| viewFragment$data.viewCls        | `Union<` `string` `,` `null` `>`       |               |
| viewFragment$data.viewName       | `Union<` `string` `,` `null` `>`       |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-viewfragment-key"></a>

### *class* @fiftyone/relay.viewFragment$key()

### viewFragment$key

| Name                               | Type                                         | Description   |
|------------------------------------|----------------------------------------------|---------------|
| viewFragment$key. $data            | `plugins.fiftyone.relay.viewFragment$data`   |               |
| viewFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'viewFragment'` `>` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-viewschemafragment-data"></a>

### *class* @fiftyone/relay.viewSchemaFragment$data()

### viewSchemaFragment$data

| Name                                        | Type                   | Description   |
|---------------------------------------------|------------------------|---------------|
| viewSchemaFragment$data. $fragmentType      | `'viewSchemaFragment'` |               |
| viewSchemaFragment$data.schemaForViewStages | `Object`               |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-viewschemafragment-key"></a>

### *class* @fiftyone/relay.viewSchemaFragment$key()

### viewSchemaFragment$key

| Name                                     | Type                                               | Description   |
|------------------------------------------|----------------------------------------------------|---------------|
| viewSchemaFragment$key. $data            | `plugins.fiftyone.relay.viewSchemaFragment$data`   |               |
| viewSchemaFragment$key. $fragmentSpreads | `FragmentRefs <  >` `<` `'viewSchemaFragment'` `>` |               |

## Variables

<a id="fos-fiftyone-fiftyone-fiftyone-relay-relayenvironmentcontext"></a>

### RelayEnvironmentContext

| Name                    | Type                                            | Description   |
|-------------------------|-------------------------------------------------|---------------|
| Context < Environment > | `Context < Environment >` `<` `Environment` `>` |               |

<a id="id6"></a>

### aggregate

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-aggregation"></a>

### aggregation

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-colorschemefragment"></a>

### colorSchemeFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-configfragment"></a>

### configFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="id8"></a>

### countValues

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-createsavedview"></a>

### createSavedView

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-dataset"></a>

### dataset

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetappconfigfragment"></a>

### datasetAppConfigFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-datasetfragment"></a>

### datasetFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-deletesavedview"></a>

### deleteSavedView

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-estimatedcounts"></a>

### estimatedCounts

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-framefieldsfragment"></a>

### frameFieldsFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-groupslicefragment"></a>

### groupSliceFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="id10"></a>

### histogramValues

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-indexesfragment"></a>

### indexesFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-lightning"></a>

### lightning

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mainsample"></a>

### mainSample

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mediafieldsfragment"></a>

### mediaFieldsFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-mediatypefragment"></a>

### mediaTypeFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-paginatesamples"></a>

### paginateSamples

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-samplefieldsfragment"></a>

### sampleFieldsFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-savedviewsfragment"></a>

### savedViewsFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-searchselectfields"></a>

### searchSelectFields

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setcolorscheme"></a>

### setColorScheme

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdataset"></a>

### setDataset

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setdatasetcolorscheme"></a>

### setDatasetColorScheme

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setfieldvisibilitystage"></a>

### setFieldVisibilityStage

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setgroupslice"></a>

### setGroupSlice

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setlabelselectionstyle"></a>

### setLabelSelectionStyle

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsample"></a>

### setSample

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsampleselectionstyle"></a>

### setSampleSelectionStyle

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselected"></a>

### setSelected

Backward-compatible mutation that accepts a flat list of sample IDs.
All samples are set to “default” selection type.

Prefer setSelectedSamples for new code that needs selection type support.

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedlabels"></a>

### setSelectedLabels

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setselectedsamples"></a>

### setSelectedSamples

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setsidebargroups"></a>

### setSidebarGroups

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setspaces"></a>

### setSpaces

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-setview"></a>

### setView

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-sidebargroupsfragment"></a>

### sidebarGroupsFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-stagedefinitionsfragment"></a>

### stageDefinitionsFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-updatesavedview"></a>

### updateSavedView

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-viewfragment"></a>

### viewFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |

<a id="fos-fiftyone-fiftyone-fiftyone-relay-viewschemafragment"></a>

### viewSchemaFragment

| Name              | Type                | Description   |
|-------------------|---------------------|---------------|
| GraphQLTaggedNode | `GraphQLTaggedNode` |               |
