OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • # Get a shipment by ID
  • #
  • # Arguments
  • # key: INLT's unique shipment ID
  • shipment(key: KeyInput!): Shipment
  • # Query an HTS number by INLT ID.
  • #
  • # Arguments
  • # id: INLT HTS ID
  • htsId(id: ID!): HTSPayload
  • # Query an HTS number by number.
  • #
  • # Arguments
  • # number: HTS Number
  • htsNumber(number: String!): HTSPayload
  • # Query an AD/CVD case number (Anti-Dumping/Countervailing Duties)
  • #
  • # Arguments
  • # id: Case Number
  • case(id: CaseNumber!): CasePayload
  • # Get a consignee by key
  • #
  • # Arguments
  • # key: The unique key for the consignee
  • consignee(key: KeyInput!): Consignee
  • # Get an importer by key
  • #
  • # Arguments
  • # key: The unique key for the importer
  • importer(key: KeyInput!): Importer
  • # Get an invoice by ID. NOTE: Only INLT IDs are currently supported for invoices.
  • # CIDs will be rejected.
  • #
  • # Arguments
  • # key: INLT's unique invoice ID
  • invoice(key: KeyInput!): Invoice
  • # Get a location by ID
  • #
  • # Arguments
  • # key: INLT's unique location ID
  • location(key: KeyInput!): Location
  • # Get a product by Key
  • #
  • # Arguments
  • # key: INLT's unique product ID
  • product(key: KeyInput!): Product
  • # Global search for INLT records
  • #
  • # Arguments
  • # query: Query string, see
  • # https://help.inlt.com/customs-brokerage/using-the-universal-search-tool
  • search(query: String!): SearchPayload
  • # Get a supplier by ID
  • #
  • # Arguments
  • # key: INLT's unique supplier ID
  • supplier(key: KeyInput!): Supplier
  • # Get a trucker by key
  • #
  • # Arguments
  • # key: The unique key for the trucker
  • trucker(key: KeyInput!): Trucker
  • # Arguments
  • # txId:
  • amsQueryResult(txId: ID!): AMSQueryResult!
  • }

link Require by

This element is not required by anyone