Overview
Summary
Contact
Donate
Imprint
Prompt for the
AnswerView
Please create a React-JS view called "AnswerView" for the fields of the Answer entity. The AnswerView must contain the following fields: - name: Body type: STRING - name: CreatedAt type: DATE - name: Customer type: Customer - name: Question type: Question - name: Seller type: Seller The data source for the [Customer] select control should be loaded from the relative URL: "/CustomerService/customer" (HTTP-GET) The data source for the [Question] select control should be loaded from the relative URL: "/ProductService/question" (HTTP-GET) The data source for the [Seller] select control should be loaded from the relative URL: "/ProductService/seller" (HTTP-GET) An existing Answer entity should be loaded from the relative URL: "/ProductService/answer/{id}" (HTTP-GET) If a new Answer entity has been created, the new entity should be posted to the relative URL: "/ProductService/answer" (HTTP-POST) If an existing Answer entity has been updated, the modified entity should be sent to the relative URL: "/ProductService/answer/{id}" (HTTP-PUT) If an existing Answer entity has to be deleted, the following relative URL should be called: "/ProductService/answer/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint