Overview
Summary
Contact
Donate
Imprint
Prompt for the
CountryView
Please create a React-JS view called "CountryView" for the fields of the Country entity. The CountryView must contain the following fields: - name: IsHighIncome type: BOOL - name: IsoCode type: STRING - name: Name type: STRING An existing Country entity should be loaded from the relative URL: "/CountryService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/CountryService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/CountryService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Artist columns: - column: Country - column: IsGhostArtist - column: Name - column: IsVerified The table should have the title "Artists" und the data must be loaded from the server with the following relative URL: "/TrackService/artist/country/{id}" Add a HTML table to the view with the following StreamEvent columns: - column: Track - column: PodcastEpisode - column: SubscriptionPlan - column: StartedAt - column: Country - column: IsCountedForRoyalty - column: UserAccount - column: DurationSeconds The table should have the title "StreamEvents" und the data must be loaded from the server with the following relative URL: "/TrackService/streamevent/country/{id}" Add a HTML table to the view with the following PartnerCompany columns: - column: Name - column: Industry - column: Country The table should have the title "PartnerCompanys" und the data must be loaded from the server with the following relative URL: "/PartnerCompanyService/partnercompany/country/{id}" Add a HTML table to the view with the following Investor columns: - column: Type - column: Country - column: Name The table should have the title "Investors" und the data must be loaded from the server with the following relative URL: "/CountryService/investor/country/{id}" Add a HTML table to the view with the following Label columns: - column: Website - column: Country - column: Name The table should have the title "Labels" und the data must be loaded from the server with the following relative URL: "/CountryService/label/country/{id}" Add a HTML table to the view with the following UserAccount columns: - column: BirthDate - column: Email - column: DisplayName - column: IsPremium - column: CreatedAt - column: Region - column: IsFamilyManager - column: IsStudent - column: Country The table should have the title "UserAccounts" und the data must be loaded from the server with the following relative URL: "/UserAccountService/useraccount/country/{id}" Add a HTML table to the view with the following Office columns: - column: IsHeadquarters - column: CompanyEntity - column: Country - column: IsOperationalHq - column: ClosedOn - column: OpenedOn - column: City The table should have the title "Offices" und the data must be loaded from the server with the following relative URL: "/CompanyEntityService/office/country/{id}" Add a HTML table to the view with the following HardwareProduct columns: - column: Category - column: AnnouncedOn - column: Name - column: DiscontinuedOn - column: Country The table should have the title "HardwareProducts" und the data must be loaded from the server with the following relative URL: "/CountryService/hardwareproduct/country/{id}" Add a HTML table to the view with the following TelcoPartnership columns: - column: StartDate - column: Country - column: PartnerCompany - column: EndDate - column: Name - column: IncludesZeroRating The table should have the title "TelcoPartnerships" und the data must be loaded from the server with the following relative URL: "/PartnerCompanyService/telcopartnership/country/{id}" Add a HTML table to the view with the following CompanyEntity columns: - column: City - column: Name - column: IsParent - column: Country - column: Website - column: LegalForm The table should have the title "CompanyEntitys" und the data must be loaded from the server with the following relative URL: "/CompanyEntityService/companyentity/country/{id}" Add a HTML table to the view with the following Podcast columns: - column: IsExclusive - column: Title - column: Country - column: Language - column: Description - column: IsVideoEnabled The table should have the title "Podcasts" und the data must be loaded from the server with the following relative URL: "/CompanyEntityService/podcast/country/{id}" Add a HTML table to the view with the following CountryRegion columns: - column: MarketRegion - column: Country The table should have the title "CountryRegions" und the data must be loaded from the server with the following relative URL: "/MarketRegionService/countryregion/country/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint