githubEdit

paper-planeReceivingInbound

ReceivingInbound Type

Represents an inbound shipment in the receiving system, used to track incoming inventory from suppliers.

Fields

Field
Type
Description

id

ID!

Unique identifier of the inbound shipment

tenantID

UUID!

Tenant identifier

createdAt

Time!

Creation timestamp

createdBy

UUID

User identifier who created the inbound

updatedAt

Time

Last update timestamp

updatedBy

UUID

User identifier who last updated the inbound

deletedAt

Time

Deletion timestamp

deletedBy

UUID

User identifier who deleted the inbound

dataTypeID

UUID

Data type identifier

dataTypeSlug

String

Data type slug

data

Map

Custom data associated with the inbound

orderID

String

Order or reference ID for the inbound shipment

supplierID

UUID!

ID of the supplier this inbound is from

Connection Fields

The inboundItems field returns a Connection object that supports pagination, filtering, and ordering.

inboundItems Connection

Argument
Type
Description

after

Cursor

Returns elements after this cursor

first

Int

Returns the first n elements

before

Cursor

Returns elements before this cursor

last

Int

Returns the last n elements

orderBy

ReceivingInboundItemOrder

Ordering options for inbound items

where

ReceivingInboundItemWhereInput

Filtering options for inbound items

Interfaces

  • NodeReceiving

Usage Example

Query with Filtering and Ordering on Inbound Items

Create Mutation Example

Last updated

Was this helpful?