DEV

Query.

collectUploadEvents

No description

Arguments

after

String

Return elements after the specified cursor (non-inclusive)

before

String

Return elements before the specified cursor (non-inclusive)
Filter returned objects by the given criteria

first

Int

Return up to the first n elements

last

Int

Return up to the last n elements
GraphQL
1
2
3
type Query {
  collectUploadEvents(after: String, before: String, filter: CollectUploadEventFilter, first: Int, last: Int): CollectUploadEventConnection!
}

Was this page helpful?