DEV

Query.

labels

No description

Arguments

after

String

Returns the elements after the specified cursor

before

String

Returns the elements before the specified cursor

filter

LabelFilter

Type to filter by different criteria of a Label

first

Int

The number of first elements to return from the query

last

Int

The number of last elements to return from the query
GraphQL
1
2
3
type Query {
  labels(after: String, before: String, filter: LabelFilter, first: Int, last: Int): LabelConnection
}

Was this page helpful?