Skip to content

components

Query for nodes of type Component

graphql
components(
  after: String
  before: String
  filter: ComponentFilterInput
  first: Int
  last: Int
  orderBy: [ComponentOrder!]
  skip: Int
): ComponentConnection!

Arguments

components.after ● String scalar

Get only items after the cursor

components.before ● String scalar

Get only items before the cursor

components.filter ● ComponentFilterInput input

Filter for specific items in the connection

components.first ● Int scalar

Get the first n items. Must not be used if before is specified

components.last ● Int scalar

Get the last n items. Must not be used if after is specified

components.orderBy ● [ComponentOrder!] list input

Order in which the items are sorted

components.skip ● Int scalar

Skips n items. First or last MUST be specified, is otherwise ignored

Type

ComponentConnection object

The connection type for Component.

Released under the MIT License.