DEV

Query.

customsDocuments

Query for a paginated connection of CustomsDocuments

Arguments

after

String

Returns the elements that come after the specified cursor.

before

String

Returns the elements that come before the specified cursor.
Filter the returned objects by the 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 {
  customsDocuments(after: String, before: String, filter: CustomsDocumentFilter, first: Int, last: Int): CustomsDocumentConnection!
}

Was this page helpful?