DEV

Query.

pddpSubmissionLogs

Returns a paginated list of PDDP submissions logs.

Arguments

after

String

Returns the elements in the list that come after the specified cursor.

before

String

Returns the elements in the list that come before the specified cursor.
A set of filters to apply to the list of PDDP Submission Logs

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 {
  pddpSubmissionLogs(after: String, before: String, filter: PddpSubmissionLogFilter, first: Int, last: Int): PddpSubmissionLogConnection
}

Was this page helpful?