Overview
Summary
Contact
Donate
Imprint
Prompt for the
SearchQueryView
Please create a React-JS view called "SearchQueryView" for the fields of the SearchQuery entity. The SearchQueryView must contain the following fields: - name: ExecutedAt type: DATE - name: FiltersJson type: STRING - name: Language type: STRING - name: QueryText type: STRING - name: ResultCountApprox type: LONG - name: User type: User The data source for the [User] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) An existing SearchQuery entity should be loaded from the relative URL: "/UserService/searchquery/{id}" (HTTP-GET) If a new SearchQuery entity has been created, the new entity should be posted to the relative URL: "/UserService/searchquery" (HTTP-POST) If an existing SearchQuery entity has been updated, the modified entity should be sent to the relative URL: "/UserService/searchquery/{id}" (HTTP-PUT) If an existing SearchQuery entity has to be deleted, the following relative URL should be called: "/UserService/searchquery/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint