FileReftype
FileReftype Type
FileReftype is an enum for the field reftype, representing the type of entity a file is associated with.
Values
Value
Description
item
File related to an inventory item
customer
File related to a customer
supplier
File related to a supplier
picking_order
File related to a picking order
picking_order_item
File related to a picking order item
inbound
File related to an inbound
inbound_item
File related to an inbound item
item_movement
File related to an item movement
repository_movement
File related to a repository movement
file
File related to another file
item_set
File related to an item set
repository
File related to a repository
collection_movement
File related to a collection movement
Usage Example
query {
files(where: { reftype: item }) {
edges {
node {
id
name
reftype
}
}
}
}Last updated
Was this helpful?
