Skip to content

projects

Query for nodes of type Project

graphql
projects(
  after: String
  before: String
  filter: ProjectFilterInput
  first: Int
  last: Int
  orderBy: [ProjectOrder!]
  skip: Int
): ProjectConnection!

Arguments

projects.after ● String scalar

Get only items after the cursor

projects.before ● String scalar

Get only items before the cursor

projects.filter ● ProjectFilterInput input

Filter for specific items in the connection

projects.first ● Int scalar

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

projects.last ● Int scalar

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

projects.orderBy ● [ProjectOrder!] list input

Order in which the items are sorted

projects.skip ● Int scalar

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

Type

ProjectConnection object

The connection type for Project.

Released under the MIT License.