Skip to content

trackables ​

Query for nodes of type Trackable

graphql
trackables(
  after: String
  before: String
  filter: TrackableFilterInput
  first: Int
  last: Int
  orderBy: [TrackableOrder!]
  skip: Int
): TrackableConnection!

Arguments ​

trackables.after ● String scalar ​

Get only items after the cursor

trackables.before ● String scalar ​

Get only items before the cursor

trackables.filter ● TrackableFilterInput input ​

Filter for specific items in the connection

trackables.first ● Int scalar ​

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

trackables.last ● Int scalar ​

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

trackables.orderBy ● [TrackableOrder!] list input ​

Order in which the items are sorted

trackables.skip ● Int scalar ​

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

Type ​

TrackableConnection object ​

The connection type for Trackable.

Released under the MIT License.