DEV

Query.

collectSubmissions

Query for a list of CollectSubmissions based on provided filter params.

Arguments

after

String

Returns the elements after the specified cursor

before

String

Returns the elements before the specified cursor
Type to filter the list by a given criteria

first

Int

Returns up to the first n elements from the list

last

Int

Returns up to the last n elements from the list
GraphQL
1
2
3
type Query {
  collectSubmissions(after: String, before: String, filter: CollectSubmissionFilter, first: Int, last: Int): CollectSubmissionConnection!
}

Was this page helpful?