Overview
Summary
Contact
Donate
Imprint
Prompt for the
RatingView
Please create a React-JS view called "RatingView" for the fields of the Rating entity. The RatingView must contain the following fields: - name: Comment type: STRING - name: CreatedAt type: DATE - name: Customer type: Customer - name: CustomerOrder type: LONG - name: IsVerified type: BOOL - name: RatingValue type: LONG - name: Restaurant type: Restaurant The data source for the [Restaurant] select control should be loaded from the relative URL: "/RestaurantService/restaurant" (HTTP-GET) The data source for the [Customer] select control should be loaded from the relative URL: "/CustomerService/customer" (HTTP-GET) An existing Rating entity should be loaded from the relative URL: "/RestaurantTagService/rating/{id}" (HTTP-GET) If a new Rating entity has been created, the new entity should be posted to the relative URL: "/RestaurantTagService/rating" (HTTP-POST) If an existing Rating entity has been updated, the modified entity should be sent to the relative URL: "/RestaurantTagService/rating/{id}" (HTTP-PUT) If an existing Rating entity has to be deleted, the following relative URL should be called: "/RestaurantTagService/rating/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint