ProductResourceFeedbacks
Lists product resource feedback items visible to the current application.
Table-Specific Information
Select
The driver uses the Shopify API to process WHERE clause conditions built with the following column and operators. The driver processes other filters client-side within the driver.
- ProductId supports the '=, IN' comparison operators.
For example, the following query is processed server-side:
SELECT * FROM ProductResourceFeedbacks WHERE ProductId = 'Val1'
Insert
The following columns can be used to create a new record:
ProductId, FeedbackGeneratedAt, Messages, ProductUpdatedAt, State
Columns
| Name | Type | ReadOnly | References | Description |
| ProductId [KEY] | String | True |
Products.Id |
The Id of the product associated with the resource feedback. |
| FeedbackGeneratedAt | Datetime | True |
The date and time when the feedback was generated, used to determine whether new feedback is outdated compared to existing feedback. | |
| Messages | String | True |
The feedback messages presented to the merchant. | |
| ProductUpdatedAt | Datetime | True |
The date and time when the associated product was last updated. | |
| State | String | True |
The current state of the feedback, indicating whether merchant action is required. The allowed values are ACCEPTED, REQUIRES_ACTION. |