| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { clientConsent(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { diagnostic(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { fulfillmentSource(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
updatedAtEnd | NaiveDateTime | Updated at end |
updatedAtStart | NaiveDateTime | Updated at start |
query( $updatedAtEnd: NaiveDateTime, $updatedAtStart: NaiveDateTime) { fulfillmentSources( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}query( $locationId: ID!, $lotNumber: String!, $productId: ID) { inventoryAdjustment( locationId: $locationId, lotNumber: $lotNumber, productId: $productId ) { id # Add other fields you need }}{ "locationId": "1", "lotNumber": "example", "productId": "1"}query( $limit: Int, $locationId: ID!, $offset: Int, $productId: ID) { inventoryAdjustments( limit: $limit, locationId: $locationId, offset: $offset, productId: $productId ) { id # Add other fields you need }}{ "limit": 1, "locationId": "1", "offset": 1, "productId": "1"}| Argument | Type | Description |
|---|---|---|
updatedAtEnd | NaiveDateTime | Updated at end |
updatedAtStart | NaiveDateTime | Updated at start |
query( $updatedAtEnd: NaiveDateTime, $updatedAtStart: NaiveDateTime) { productCategories( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { productCategory(id: $id) { id # Add other fields you need }}{ "id": "1"}query( $locationId: ID!, $productId: ID) { productHistory( locationId: $locationId, productId: $productId ) { id # Add other fields you need }}{ "locationId": "1", "productId": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { productType(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
updatedAtEnd | NaiveDateTime | Updated at end |
updatedAtStart | NaiveDateTime | Updated at start |
query( $updatedAtEnd: NaiveDateTime, $updatedAtStart: NaiveDateTime) { productTypes( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}query( $id: ID!, $locationId: ID!) { stockLocation( id: $id, locationId: $locationId ) { id # Add other fields you need }}{ "id": "1", "locationId": "1"}| Argument | Type | Description |
|---|---|---|
locationIdrequired | ID! | ID of the location |
query($locationId: ID!) { stockLocations(locationId: $locationId) { id # Add other fields you need }}{ "locationId": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
query($id: ID!) { stockTransfer(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
locationId | ID | ID of the location |
query($locationId: ID) { stockTransfers(locationId: $locationId) { id # Add other fields you need }}{ "locationId": "1"}