Shipment Tracking
Represents a shipment tracking information
The code of a carrier. This information is mandatory for a registered carrier.
The name of a carrier. This information is mandatory for an unregistered carrier.
The carrier tracking number. This information is mandatory for a registered carrier with a URL requiring a tracking number.
The tracking url of a carrier. This information is unused for registered carriers (because computed automatically). This information is optional for unregistered carriers.
{ "carrierCode": "Example String", "carrierName": "Example String", "trackingNumber": "Example String", "trackingUrl": "Example Custom Scalar" }
Reason
Reason code
Indicate if reason is enabled to the customer
Indicate if reason is enabled to the operator
Indicate if reason is enabled to the shop
Reason label
Type of the reason
{ "code": "Example String", "customerRight": true, "operatorRight": true, "shopRight": true, "label": "Example String", "type": "Example String" }
Evaluation Connection
A list of edges.
Information to aid in pagination.
The total count of evaluations.
Implements interfaces
{ "edges": [ { "node": { "assessments": [ { "__typename": "Assessment" } ], "comment": "Example String", "customer": { "__typename": "ReviewCustomer" }, "date": "Example Custom Scalar", "grade": "Example Custom Scalar", "reply": { "__typename": "EvaluationReply" } } } ], "pageInfo": { "endCursor": "Example String", "hasNextPage": true, "hasPreviousPage": true, "startCursor": "Example String" }, "totalCount": "Example Custom Scalar" }
Evaluation Edge
An edge in a connection.
The item of the edge.
{ "node": { "assessments": [ { "__typename": "Assessment" } ], "comment": "Example String", "customer": { "__typename": "ReviewCustomer" }, "date": "Example Custom Scalar", "grade": "Example Custom Scalar", "reply": { "__typename": "EvaluationReply" } } }
Evaluation
Represents an evaluation. It could be for a shop, an order...
List of assessments
Evaluation comment
Customer who posted the evaluation
Evaluation creation date
Evaluation grade
Reply of a shop or operator on an evaluation
{ "assessments": [ { "__typename": "Assessment" } ], "comment": "Example String", "customer": { "__typename": "ReviewCustomer" }, "date": "Example Custom Scalar", "grade": "Example Custom Scalar", "reply": { "__typename": "EvaluationReply" } }