diff --git a/.env.deploy b/.env.deploy deleted file mode 100644 index efff4e43..00000000 --- a/.env.deploy +++ /dev/null @@ -1,9 +0,0 @@ -API_URL=https://jobfair.fer.unizg.hr/api -BASE_URL=https://jobfair.fer.unizg.hr -HOST=0.0.0.0 -PORT=3000 -NODE_ENV=production -SENTRY_DSN=https://6e0310e364ac4e69ac77e9dec745b9dd@o1142234.ingest.sentry.io/6201298 -NUXT_PUBLIC_GTAG_ID=G-TG1E1XGR6F -NUXT_PUBLIC_PLAUSIBLE_DOMAIN=jobfair.fer.unizg.hr -NUXT_PUBLIC_PLAUSIBLE_API_HOST=https://jobfair.fer.unizg.hr/pevts diff --git a/assets/images/component/AppFooter/icons/socials/icon-fb.png b/assets/images/component/AppFooter/icons/socials/icon-fb.png index 89a5e9ab..0db843d5 100644 Binary files a/assets/images/component/AppFooter/icons/socials/icon-fb.png and b/assets/images/component/AppFooter/icons/socials/icon-fb.png differ diff --git a/assets/images/component/AppFooter/icons/socials/icon-ig.png b/assets/images/component/AppFooter/icons/socials/icon-ig.png index 51f7daf1..f798d2c0 100644 Binary files a/assets/images/component/AppFooter/icons/socials/icon-ig.png and b/assets/images/component/AppFooter/icons/socials/icon-ig.png differ diff --git a/assets/images/component/AppFooter/icons/socials/icon-ln.png b/assets/images/component/AppFooter/icons/socials/icon-ln.png index fe689b38..bba3b587 100644 Binary files a/assets/images/component/AppFooter/icons/socials/icon-ln.png and b/assets/images/component/AppFooter/icons/socials/icon-ln.png differ diff --git a/assets/images/component/AppFooter/icons/socials/icon-yt.png b/assets/images/component/AppFooter/icons/socials/icon-yt.png index 8d05d016..d34a7a48 100644 Binary files a/assets/images/component/AppFooter/icons/socials/icon-yt.png and b/assets/images/component/AppFooter/icons/socials/icon-yt.png differ diff --git a/assets/images/page/company-info/icons/socials/icon-fb.png b/assets/images/page/company-info/icons/socials/icon-fb.png new file mode 100644 index 00000000..6717966f Binary files /dev/null and b/assets/images/page/company-info/icons/socials/icon-fb.png differ diff --git a/assets/images/page/company-info/icons/socials/icon-ig.png b/assets/images/page/company-info/icons/socials/icon-ig.png new file mode 100644 index 00000000..c0b1d84b Binary files /dev/null and b/assets/images/page/company-info/icons/socials/icon-ig.png differ diff --git a/assets/images/page/company-info/icons/socials/icon-ln.png b/assets/images/page/company-info/icons/socials/icon-ln.png new file mode 100644 index 00000000..73b08e4c Binary files /dev/null and b/assets/images/page/company-info/icons/socials/icon-ln.png differ diff --git a/assets/images/page/company-info/icons/socials/icon-web.png b/assets/images/page/company-info/icons/socials/icon-web.png new file mode 100644 index 00000000..7e30e9d5 Binary files /dev/null and b/assets/images/page/company-info/icons/socials/icon-web.png differ diff --git a/backend/app/graphql/resolvers/company.ts b/backend/app/graphql/resolvers/company.ts index ca6b44ef..6533d84c 100644 --- a/backend/app/graphql/resolvers/company.ts +++ b/backend/app/graphql/resolvers/company.ts @@ -271,6 +271,15 @@ class CreateCompanyInput extends CompanyCreateInput { @Field() industry: string = ""; + @Field(() => String, { nullable: true }) + instagram?: string = undefined; + + @Field(() => String, { nullable: true }) + facebook?: string = undefined; + + @Field(() => String, { nullable: true }) + linkedIn?: string = undefined; + @Field(() => GraphQLUpload, { nullable: true }) vectorLogo: FileUpload | null = null; diff --git a/backend/app/graphql/resolvers/galleryImage.ts b/backend/app/graphql/resolvers/galleryImage.ts index 9051e20b..7c51708f 100644 --- a/backend/app/graphql/resolvers/galleryImage.ts +++ b/backend/app/graphql/resolvers/galleryImage.ts @@ -1,9 +1,8 @@ import { - GalleryImage, Image, + GalleryImage, SponsorCreateInput, } from "@generated/type-graphql"; import { - Arg, Authorized, Ctx, Field, FieldResolver, Info, InputType, Int, Mutation, ObjectType, Query, Resolver, - Root, + Arg, Authorized, Ctx, Field, Info, InputType, Int, Mutation, ObjectType, Query, Resolver, } from "type-graphql"; import { type GraphQLResolveInfo, @@ -15,10 +14,9 @@ import { type Context, } from "../../types/apollo-context"; import { - toSelect, transformSelectDefaults, transformSelectFor, + toSelect, transformSelectFor, } from "../helpers/resolver"; import { - GQLField, type Dict, type GQLResponse, } from "../../types/helpers"; import { @@ -39,31 +37,15 @@ import { import { swap, } from "../../services/helpers/orderable"; -import { - transformSelect as transformSelectImage, -} from "./image"; @Resolver(() => GalleryImage) export class GalleryImageFieldResolver { - @FieldResolver(() => Image, { nullable: true }) - photo( - @Root() galleryImage: GalleryImage, - ): GQLField { - return galleryImage.photo ?? null; - } + } export const transformSelect = transformSelectFor({ - ...transformSelectDefaults({ - photo: transformSelectImage, - }), -}); -@InputType() -class GalleryImageFilter { - @Field(() => Int, { nullable: true }) - take: number = 0; -} +}); @InputType() export class GalleryImageCreateInput { @@ -76,7 +58,7 @@ export class GalleryImageCreateInput { @Field() visible: boolean = false; - @Field(() => GraphQLUpload, { nullable: true }) + @Field(() => GraphQLUpload) photo: FileUpload = null as unknown as FileUpload; } @@ -90,10 +72,8 @@ export class GalleryImageQueryResolver { galleryImages( @Ctx() ctx: Context, @Info() info: GraphQLResolveInfo, - @Arg("filter", { nullable: true }) filter?: GalleryImageFilter, ): GQLResponse { return ctx.prisma.galleryImage.findMany({ - take: filter?.take, where: { visible: true, }, @@ -120,31 +100,6 @@ export class GalleryImageQueryResolver { }); } - @Query(() => GalleryImage, { nullable: true }) - galleryImageItemByUid( - @Ctx() ctx: Context, - @Info() info: GraphQLResolveInfo, - @Arg("uid") uid: string, - ): GQLResponse { - // const { user } = ctx; - - // if (!user) { - // return null; - // }; - - // if (!hasAtLeastRole(Role.Admin, user)) { - // return null; - // } - - return ctx.prisma.galleryImage.findFirst({ - where: { - uid, - }, - select: toSelect(info, transformSelect), - }); - } - - @Mutation(() => CreateGalleryImageResponse, { nullable: true }) async createGalleryImage( @Ctx() ctx: Context, @@ -311,7 +266,7 @@ export class GalleryImageQueryResolver { @Mutation(() => Boolean) async deleteGalleryImage( @Ctx() ctx: Context, - @Arg("uid") uid: string, + @Arg("galleryImage") galleryImageUid: string, ) { const { user } = ctx; @@ -326,7 +281,7 @@ export class GalleryImageQueryResolver { const success = await ctx.prisma.$transaction(async (prisma) => { const galleryImage = await prisma.galleryImage.delete({ where: { - uid: uid, + uid: galleryImageUid, }, select: { order: true, diff --git a/backend/prisma/migrations/20250310203250_add_social_media_link_fields_to_company/migration.sql b/backend/prisma/migrations/20250310203250_add_social_media_link_fields_to_company/migration.sql new file mode 100644 index 00000000..17852769 --- /dev/null +++ b/backend/prisma/migrations/20250310203250_add_social_media_link_fields_to_company/migration.sql @@ -0,0 +1,4 @@ +-- AlterTable +ALTER TABLE "Company" ADD COLUMN "facebook" TEXT, +ADD COLUMN "instagram" TEXT, +ADD COLUMN "linkedIn" TEXT; diff --git a/backend/prisma/schema.prisma b/backend/prisma/schema.prisma index 8fa07a7c..0ffefa9b 100644 --- a/backend/prisma/schema.prisma +++ b/backend/prisma/schema.prisma @@ -145,6 +145,9 @@ model Company { brandName String address String website String + instagram String? + facebook String? + linkedIn String? /// @TypeGraphQL.omit(input: true) industry Industry @relation(fields: [industryId], references: [id]) /// @TypeGraphQL.omit(input: true) diff --git a/components/page/admin/gallery/edit-gallery-image.vue b/components/page/admin/gallery/edit-gallery-image.vue deleted file mode 100644 index 04bab861..00000000 --- a/components/page/admin/gallery/edit-gallery-image.vue +++ /dev/null @@ -1,398 +0,0 @@ - - - - - diff --git a/graphql/client/gql.ts b/graphql/client/gql.ts index 1f4a4858..2b866950 100644 --- a/graphql/client/gql.ts +++ b/graphql/client/gql.ts @@ -14,8 +14,8 @@ import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document- */ const documents = { "\n query ComponentAdminSeasonRatingsCompaniesCompanyComments_Data($seasonUid: String!, $companyUid: String!) {\n companyComponentAverageRatings(seasonUid: $seasonUid, companyUid: $companyUid) {\n component\n averageRating\n comments\n }\n }\n ": types.ComponentAdminSeasonRatingsCompaniesCompanyComments_DataDocument, - "mutation Login($password: String!, $identifier: String!) {\n login(password: $password, identifier: $identifier) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Register($info: UserRegisterInput!) {\n register(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Logout {\n logout\n}\n\nmutation RequestPasswordReset($identifier: String!) {\n requestPasswordReset(identifier: $identifier)\n}\n\nmutation CheckPasswordReset($token: String!) {\n checkPasswordReset(token: $token) {\n firstName\n lastName\n email\n }\n}\n\nmutation UsePasswordReset($info: PasswordResetUseInput!) {\n usePasswordReset(info: $info) {\n errors {\n field\n message\n }\n entity\n }\n}\n\nmutation RequestPasswordResetFor($uid: String!) {\n requestPasswordResetFor(uid: $uid)\n}\n\nmutation UpdateTranslation($data: TranslationCreateInput!) {\n updateTranslation(data: $data) {\n key\n value\n language\n }\n}\n\nmutation UpdateProfile($info: UserCreateInput!) {\n updateProfile(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation UpdateUser($uid: String!, $info: UserUpdateInput!) {\n updateUser(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation UpdatePassword($currentPassword: String!, $newPassword: String!, $newPasswordRepeat: String!) {\n updatePassword(\n currentPassword: $currentPassword\n newPassword: $newPassword\n newPasswordRepeat: $newPasswordRepeat\n ) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation ValidateVat($vat: String!) {\n validateVat(vat: $vat) {\n valid\n exists\n info {\n address\n legalName\n vat\n }\n }\n}\n\nmutation CreateIndustry($name: String!) {\n createIndustry(name: $name) {\n name\n }\n}\n\nmutation RenameIndustry($oldName: String!, $newName: String!) {\n renameIndustry(oldName: $oldName, newName: $newName) {\n name\n }\n}\n\nmutation CreateTalkCategory($name: String!, $season: String!) {\n createTalkCategory(name: $name, season: $season) {\n name\n }\n}\n\nmutation RenameTalkCategory($oldName: String!, $newName: String!, $season: String!) {\n renameTalkCategory(oldName: $oldName, newName: $newName, season: $season) {\n name\n }\n}\n\nmutation RegisterCompany($info: CreateCompanyInput!) {\n registerCompany(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation UpdateCompanyInfo($info: CreateCompanyInput!) {\n updateCompanyInfo(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation CreatePressRelease($info: PressReleaseWithFilesCreateInput!) {\n createPressRelease(info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdatePressRelease($uid: String!, $info: PressReleaseWithFilesCreateInput!) {\n updatePressRelease(uid: $uid, info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation EditApprovedCompanyApplication($info: CompanyApplicationApprovedEditInput!) {\n editApprovedCompanyApplication(info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdateResume($info: ResumeCreateInput!) {\n updateResume(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation CreateNews($info: NewsCreateInput!) {\n createNews(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n slug\n }\n }\n}\n\nmutation EditNews($uid: String!, $info: NewsCreateInput!) {\n editNews(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_News\n }\n }\n}\n\nmutation DeleteNews($uid: String!) {\n deleteNews(uid: $uid)\n}\n\nmutation CreateGalleryImage($info: GalleryImageCreateInput!) {\n createGalleryImage(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation EditGalleryImage($uid: String!, $info: GalleryImageCreateInput!) {\n editGalleryImage(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_GalleryImage\n }\n }\n}\n\nmutation DeleteGalleryImage($uid: String!) {\n deleteGalleryImage(uid: $uid)\n}": types.LoginDocument, - "fragment frag_Season on Season {\n uid\n name\n startsAt\n endsAt\n applicationsFrom\n applicationsUntil\n applicationsEditableFrom\n applicationsEditableUntil\n showParticipantsFrom\n showParticipantsUntil\n showPartnersFrom\n showPartnersUntil\n showSponsorsFrom\n showSponsorsUntil\n eventFrom\n eventUntil\n feedbackFrom\n feedbackUntil\n scheduleFrom\n scheduleUntil\n}\n\nfragment frag_UserProfile on User {\n uid\n name\n firstName\n lastName\n email\n phone\n language\n roles {\n name\n }\n companies {\n uid\n vat\n legalName\n brandName\n address\n website\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n}\n\nfragment frag_ApplicationPresenter on ApplicationPresenter {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n}\n\nfragment frag_AllFeedback on CompanyApplicationFeedback {\n applicationComments\n applicationRating\n attendanceRating\n dateComments\n dateRating\n experienceComments\n foodRating\n mostLiked\n onsiteRating\n overallComment\n overallRating\n recommended\n testimonial\n timeRating\n createdAt\n updatedAt\n}\n\nfragment frag_CompanyApplication on CompanyApplication {\n booth\n wantsPanel\n wantsCocktail\n contactPerson {\n name\n email\n phone\n }\n talk {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n category {\n name\n }\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n workshop {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n goal\n notesEn\n notesHr\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n cocktail {\n name\n colour\n }\n panelParticipants {\n ...frag_ApplicationPresenter\n }\n approval {\n cocktail\n panel\n talkParticipants\n workshopParticipants\n booth\n }\n feedback {\n ...frag_AllFeedback\n }\n}\n\nfragment frag_Company on Company {\n uid\n legalName\n brandName\n descriptionEn\n descriptionHr\n address\n vat\n website\n industry {\n name\n }\n}\n\nfragment frag_News on News {\n lang\n slug\n date\n photo {\n thumbUrl\n fullUrl\n }\n title\n description\n content\n}\n\nfragment frag_GalleryImage on GalleryImage {\n uid\n name\n order\n visible\n photo {\n thumbUrl\n fullUrl\n }\n}\n\nquery Profile {\n profile {\n ...frag_UserProfile\n }\n}\n\nquery TranslationsFor($language: String!) {\n allTranslationsFor(language: $language) {\n key\n value\n }\n}\n\nquery InitialData($language: String!) {\n profile {\n ...frag_UserProfile\n }\n allTranslationsFor(language: $language) {\n key\n value\n }\n currentSeason {\n ...frag_Season\n }\n}\n\nquery PageIndexData($language: String!) {\n sponsors {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n partners {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n news(lang: $language, filter: {take: 3}) {\n ...frag_News\n }\n galleryImages(filter: {take: 6}) {\n ...frag_GalleryImage\n }\n}\n\nquery Company($vat: String!) {\n company(vat: $vat) {\n ...frag_Company\n }\n}\n\nquery CompanyInfo($uid: String!) {\n companyInfo(uid: $uid) {\n uid\n brandName\n descriptionEn\n descriptionHr\n website\n rasterLogo {\n thumbUrl\n fullUrl\n }\n program {\n booth\n talk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n reservation\n presenters {\n bioHr\n bioEn\n firstName\n lastName\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n workshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n notesHr\n notesEn\n reservation\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n panelParticipants {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n panel {\n uid\n name\n description\n reservation\n companies {\n uid\n brandName\n rasterLogo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n }\n }\n}\n\nquery Industries {\n industries {\n name\n }\n}\n\nquery TalkCategories($season: String) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n}\n\nquery PressRelease($uid: String!) {\n pressRelease(uid: $uid) {\n title\n published\n file {\n name\n mimeType\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery PressReleases($season: String) {\n pressReleases(\n orderBy: {published: desc}\n where: {forSeason: {is: {uid: {equals: $season}}}}\n ) {\n uid\n title\n published\n file {\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery AllNews($filter: NewsFilter) {\n allNews(filter: $filter) {\n uid\n ...frag_News\n }\n}\n\nquery News($lang: String!, $filter: NewsFilter) {\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItem($slug: String!, $lang: String!, $filter: NewsFilter) {\n newsItem(slug: $slug) {\n ...frag_News\n }\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItemByUid($uid: String!) {\n newsItemByUid(uid: $uid) {\n ...frag_News\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery GalleryImages($filter: GalleryImageFilter) {\n galleryImages(filter: $filter) {\n ...frag_GalleryImage\n }\n}\n\nquery AllGalleryImages {\n allGalleryImages {\n ...frag_GalleryImage\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery GalleryImagItemByUid($uid: String!) {\n galleryImageItemByUid(uid: $uid) {\n ...frag_GalleryImage\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery AdminInitialData {\n industries {\n name\n }\n seasons(orderBy: {endsAt: desc}) {\n ...frag_Season\n }\n}\n\nquery AdminCompanyApplication($company: String!, $season: String!) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n name\n key\n }\n companyApplicationFor(company: $company, season: $season) {\n ...frag_CompanyApplication\n forCompany {\n ...frag_Company\n }\n }\n}\n\nquery AdminCompanyApplications($season: String!) {\n industries {\n name\n }\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n key\n name\n }\n companyApplications(season: $season) {\n wantsCocktail\n wantsPanel\n booth\n talk {\n language\n titleEn\n category {\n name\n }\n }\n workshop {\n language\n titleEn\n }\n forCompany {\n uid\n brandName\n industry {\n name\n }\n }\n forSeason {\n uid\n }\n }\n}\n\nquery CurrentCompanyApplication {\n talkCategories {\n name\n }\n booths {\n name\n key\n }\n companyApplication {\n ...frag_CompanyApplication\n }\n}\n\nquery MyResume {\n profile {\n resume {\n uid\n updatedAt\n city\n cv {\n url\n name\n mimeType\n }\n faculty {\n name\n module\n specialization\n }\n interests\n technologies\n projects {\n project\n position\n start\n until\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n studyYears {\n studyType\n studyYear\n }\n extraField\n }\n }\n}\n\nquery Resume($uid: String!) {\n resume(uid: $uid) {\n uid\n faculty {\n name\n module\n }\n user {\n name\n email\n phone\n }\n studyYears {\n studyYear\n studyType\n }\n projects {\n project\n position\n start\n until\n }\n technologies\n interests\n city\n cv {\n url\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n extraField\n }\n resumeIsFavourite(uid: $uid)\n}\n\nquery ProfileBaseData {\n booths {\n key\n name\n }\n companyApplication {\n workshop {\n titleEn\n }\n talk {\n titleEn\n }\n booth\n wantsPanel\n wantsCocktail\n approval {\n booth\n workshopParticipants\n talkParticipants\n panel\n cocktail\n }\n userApplications {\n workshop\n talk\n }\n }\n profile {\n resume {\n uid\n }\n }\n calendar {\n uid\n title\n forWorkshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forTalk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forPanel {\n uid\n name\n description\n reservation\n }\n }\n currentSeason {\n ...frag_Season\n companyComponentAverageRatings {\n component\n averageRating\n }\n }\n}\n\nquery AdminFeedbackInfo($seasonUid: String!) {\n companyApplications(\n season: $seasonUid\n orderBy: {forCompany: {brandName: desc}}\n ) {\n forCompany {\n uid\n brandName\n }\n feedback {\n ...frag_AllFeedback\n }\n }\n}\n\nquery PageAdminSeasonScheduleBase($seasonUid: String!) {\n participants(season: $seasonUid) {\n uid\n brandName\n program {\n talk {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n workshop {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n panelParticipants {\n firstName\n lastName\n photo {\n fullUrl\n thumbUrl\n }\n }\n }\n }\n season(uid: $seasonUid) {\n panel {\n uid\n name\n description\n companies {\n uid\n }\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n calendar {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n}\n\nquery AdminReservationsData($seasonUid: String!) {\n season(uid: $seasonUid) {\n reservations {\n uid\n type\n count\n }\n }\n participants(season: $seasonUid) {\n uid\n vat\n brandName\n program {\n workshop {\n uid\n titleHr\n }\n talk {\n uid\n titleHr\n }\n panel {\n uid\n name\n }\n }\n }\n}\n\nquery PageScheduleBase {\n calendar {\n uid\n title\n text\n start\n end\n type\n grouped\n location\n hasEvent\n }\n}\n\nquery PageAdminUserEditBase($uid: String!) {\n user(uid: $uid) {\n uid\n name\n firstName\n lastName\n email\n phone\n roles {\n name\n }\n eventLog {\n id\n date\n name\n data\n }\n }\n roles {\n name\n }\n sessionsFor(uid: $uid) {\n sessionId\n ip\n userAgent\n loggedInAt\n }\n}": types.Frag_SeasonFragmentDoc, + "mutation Login($password: String!, $identifier: String!) {\n login(password: $password, identifier: $identifier) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Register($info: UserRegisterInput!) {\n register(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Logout {\n logout\n}\n\nmutation RequestPasswordReset($identifier: String!) {\n requestPasswordReset(identifier: $identifier)\n}\n\nmutation CheckPasswordReset($token: String!) {\n checkPasswordReset(token: $token) {\n firstName\n lastName\n email\n }\n}\n\nmutation UsePasswordReset($info: PasswordResetUseInput!) {\n usePasswordReset(info: $info) {\n errors {\n field\n message\n }\n entity\n }\n}\n\nmutation RequestPasswordResetFor($uid: String!) {\n requestPasswordResetFor(uid: $uid)\n}\n\nmutation UpdateTranslation($data: TranslationCreateInput!) {\n updateTranslation(data: $data) {\n key\n value\n language\n }\n}\n\nmutation UpdateProfile($info: UserCreateInput!) {\n updateProfile(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation UpdateUser($uid: String!, $info: UserUpdateInput!) {\n updateUser(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation UpdatePassword($currentPassword: String!, $newPassword: String!, $newPasswordRepeat: String!) {\n updatePassword(\n currentPassword: $currentPassword\n newPassword: $newPassword\n newPasswordRepeat: $newPasswordRepeat\n ) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation ValidateVat($vat: String!) {\n validateVat(vat: $vat) {\n valid\n exists\n info {\n address\n legalName\n vat\n }\n }\n}\n\nmutation CreateIndustry($name: String!) {\n createIndustry(name: $name) {\n name\n }\n}\n\nmutation RenameIndustry($oldName: String!, $newName: String!) {\n renameIndustry(oldName: $oldName, newName: $newName) {\n name\n }\n}\n\nmutation CreateTalkCategory($name: String!, $season: String!) {\n createTalkCategory(name: $name, season: $season) {\n name\n }\n}\n\nmutation RenameTalkCategory($oldName: String!, $newName: String!, $season: String!) {\n renameTalkCategory(oldName: $oldName, newName: $newName, season: $season) {\n name\n }\n}\n\nmutation RegisterCompany($info: CreateCompanyInput!) {\n registerCompany(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation UpdateCompanyInfo($info: CreateCompanyInput!) {\n updateCompanyInfo(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation CreatePressRelease($info: PressReleaseWithFilesCreateInput!) {\n createPressRelease(info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdatePressRelease($uid: String!, $info: PressReleaseWithFilesCreateInput!) {\n updatePressRelease(uid: $uid, info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation EditApprovedCompanyApplication($info: CompanyApplicationApprovedEditInput!) {\n editApprovedCompanyApplication(info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdateResume($info: ResumeCreateInput!) {\n updateResume(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation CreateNews($info: NewsCreateInput!) {\n createNews(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n slug\n }\n }\n}\n\nmutation EditNews($uid: String!, $info: NewsCreateInput!) {\n editNews(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_News\n }\n }\n}\n\nmutation DeleteNews($uid: String!) {\n deleteNews(uid: $uid)\n}": types.LoginDocument, + "fragment frag_Season on Season {\n uid\n name\n startsAt\n endsAt\n applicationsFrom\n applicationsUntil\n applicationsEditableFrom\n applicationsEditableUntil\n showParticipantsFrom\n showParticipantsUntil\n showPartnersFrom\n showPartnersUntil\n showSponsorsFrom\n showSponsorsUntil\n eventFrom\n eventUntil\n feedbackFrom\n feedbackUntil\n scheduleFrom\n scheduleUntil\n}\n\nfragment frag_UserProfile on User {\n uid\n name\n firstName\n lastName\n email\n phone\n language\n roles {\n name\n }\n companies {\n uid\n vat\n legalName\n brandName\n address\n website\n instagram\n facebook\n linkedIn\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n}\n\nfragment frag_ApplicationPresenter on ApplicationPresenter {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n}\n\nfragment frag_AllFeedback on CompanyApplicationFeedback {\n applicationComments\n applicationRating\n attendanceRating\n dateComments\n dateRating\n experienceComments\n foodRating\n mostLiked\n onsiteRating\n overallComment\n overallRating\n recommended\n testimonial\n timeRating\n createdAt\n updatedAt\n}\n\nfragment frag_CompanyApplication on CompanyApplication {\n booth\n wantsPanel\n wantsCocktail\n contactPerson {\n name\n email\n phone\n }\n talk {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n category {\n name\n }\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n workshop {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n goal\n notesEn\n notesHr\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n cocktail {\n name\n colour\n }\n panelParticipants {\n ...frag_ApplicationPresenter\n }\n approval {\n cocktail\n panel\n talkParticipants\n workshopParticipants\n booth\n }\n feedback {\n ...frag_AllFeedback\n }\n}\n\nfragment frag_Company on Company {\n uid\n legalName\n brandName\n descriptionEn\n descriptionHr\n address\n vat\n website\n instagram\n facebook\n linkedIn\n industry {\n name\n }\n}\n\nfragment frag_News on News {\n lang\n slug\n date\n photo {\n thumbUrl\n fullUrl\n }\n title\n description\n content\n}\n\nquery Profile {\n profile {\n ...frag_UserProfile\n }\n}\n\nquery TranslationsFor($language: String!) {\n allTranslationsFor(language: $language) {\n key\n value\n }\n}\n\nquery InitialData($language: String!) {\n profile {\n ...frag_UserProfile\n }\n allTranslationsFor(language: $language) {\n key\n value\n }\n currentSeason {\n ...frag_Season\n }\n}\n\nquery PageIndexData($language: String!) {\n sponsors {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n partners {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n news(lang: $language, filter: {take: 3}) {\n ...frag_News\n }\n}\n\nquery Company($vat: String!) {\n company(vat: $vat) {\n ...frag_Company\n }\n}\n\nquery CompanyInfo($uid: String!) {\n companyInfo(uid: $uid) {\n uid\n brandName\n descriptionEn\n descriptionHr\n website\n instagram\n facebook\n linkedIn\n rasterLogo {\n thumbUrl\n fullUrl\n }\n program {\n booth\n talk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n reservation\n presenters {\n bioHr\n bioEn\n firstName\n lastName\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n workshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n notesHr\n notesEn\n reservation\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n panelParticipants {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n panel {\n uid\n name\n description\n reservation\n companies {\n uid\n brandName\n rasterLogo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n }\n }\n}\n\nquery Industries {\n industries {\n name\n }\n}\n\nquery TalkCategories($season: String) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n}\n\nquery PressRelease($uid: String!) {\n pressRelease(uid: $uid) {\n title\n published\n file {\n name\n mimeType\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery PressReleases($season: String) {\n pressReleases(\n orderBy: {published: desc}\n where: {forSeason: {is: {uid: {equals: $season}}}}\n ) {\n uid\n title\n published\n file {\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery AllNews($filter: NewsFilter) {\n allNews(filter: $filter) {\n uid\n ...frag_News\n }\n}\n\nquery News($lang: String!, $filter: NewsFilter) {\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItem($slug: String!, $lang: String!, $filter: NewsFilter) {\n newsItem(slug: $slug) {\n ...frag_News\n }\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItemByUid($uid: String!) {\n newsItemByUid(uid: $uid) {\n ...frag_News\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery AdminInitialData {\n industries {\n name\n }\n seasons(orderBy: {endsAt: desc}) {\n ...frag_Season\n }\n}\n\nquery AdminCompanyApplication($company: String!, $season: String!) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n name\n key\n }\n companyApplicationFor(company: $company, season: $season) {\n ...frag_CompanyApplication\n forCompany {\n ...frag_Company\n }\n }\n}\n\nquery AdminCompanyApplications($season: String!) {\n industries {\n name\n }\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n key\n name\n }\n companyApplications(season: $season) {\n wantsCocktail\n wantsPanel\n booth\n talk {\n language\n titleEn\n category {\n name\n }\n }\n workshop {\n language\n titleEn\n }\n forCompany {\n uid\n brandName\n industry {\n name\n }\n }\n forSeason {\n uid\n }\n }\n}\n\nquery CurrentCompanyApplication {\n talkCategories {\n name\n }\n booths {\n name\n key\n }\n companyApplication {\n ...frag_CompanyApplication\n }\n}\n\nquery MyResume {\n profile {\n resume {\n uid\n updatedAt\n city\n cv {\n url\n name\n mimeType\n }\n faculty {\n name\n module\n specialization\n }\n interests\n technologies\n projects {\n project\n position\n start\n until\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n studyYears {\n studyType\n studyYear\n }\n extraField\n }\n }\n}\n\nquery Resume($uid: String!) {\n resume(uid: $uid) {\n uid\n faculty {\n name\n module\n }\n user {\n name\n email\n phone\n }\n studyYears {\n studyYear\n studyType\n }\n projects {\n project\n position\n start\n until\n }\n technologies\n interests\n city\n cv {\n url\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n extraField\n }\n resumeIsFavourite(uid: $uid)\n}\n\nquery ProfileBaseData {\n booths {\n key\n name\n }\n companyApplication {\n workshop {\n titleEn\n }\n talk {\n titleEn\n }\n booth\n wantsPanel\n wantsCocktail\n approval {\n booth\n workshopParticipants\n talkParticipants\n panel\n cocktail\n }\n userApplications {\n workshop\n talk\n }\n }\n profile {\n resume {\n uid\n }\n }\n calendar {\n uid\n title\n forWorkshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forTalk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forPanel {\n uid\n name\n description\n reservation\n }\n }\n currentSeason {\n ...frag_Season\n companyComponentAverageRatings {\n component\n averageRating\n }\n }\n}\n\nquery AdminFeedbackInfo($seasonUid: String!) {\n companyApplications(\n season: $seasonUid\n orderBy: {forCompany: {brandName: desc}}\n ) {\n forCompany {\n uid\n brandName\n }\n feedback {\n ...frag_AllFeedback\n }\n }\n}\n\nquery PageAdminSeasonScheduleBase($seasonUid: String!) {\n participants(season: $seasonUid) {\n uid\n brandName\n program {\n talk {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n workshop {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n panelParticipants {\n firstName\n lastName\n photo {\n fullUrl\n thumbUrl\n }\n }\n }\n }\n season(uid: $seasonUid) {\n panel {\n uid\n name\n description\n companies {\n uid\n }\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n calendar {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n}\n\nquery AdminReservationsData($seasonUid: String!) {\n season(uid: $seasonUid) {\n reservations {\n uid\n type\n count\n }\n }\n participants(season: $seasonUid) {\n uid\n vat\n brandName\n program {\n workshop {\n uid\n titleHr\n }\n talk {\n uid\n titleHr\n }\n panel {\n uid\n name\n }\n }\n }\n}\n\nquery PageScheduleBase {\n calendar {\n uid\n title\n text\n start\n end\n type\n grouped\n location\n hasEvent\n }\n}\n\nquery PageAdminUserEditBase($uid: String!) {\n user(uid: $uid) {\n uid\n name\n firstName\n lastName\n email\n phone\n roles {\n name\n }\n eventLog {\n id\n date\n name\n data\n }\n }\n roles {\n name\n }\n sessionsFor(uid: $uid) {\n sessionId\n ip\n userAgent\n loggedInAt\n }\n}": types.Frag_SeasonFragmentDoc, "\n query PageAdminSeasonSeasonData($uid: String!) {\n season(uid: $uid) {\n uid\n name\n startsAt\n endsAt\n applicationsFrom\n applicationsUntil\n }\n }\n ": types.PageAdminSeasonSeasonDataDocument, "\n mutation PageAdminSeasonApplicationsCompanyEdit_DeleteApplication($company: String!, $season: String!) {\n deleteCompanyApplicationFor(\n company: $company\n season: $season\n )\n }\n ": types.PageAdminSeasonApplicationsCompanyEdit_DeleteApplicationDocument, "\n mutation PageAdminSeasonApplicationsCompanyEdit_UpsertApplication($company: String!, $season: String!, $info: CompanyApplicationCreateInput!) {\n createCompanyApplicationFor(company: $company, season: $season, info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n wantsCocktail\n wantsPanel\n }\n\n errors {\n field\n message\n }\n }\n }\n ": types.PageAdminSeasonApplicationsCompanyEdit_UpsertApplicationDocument, @@ -75,11 +75,11 @@ export function graphql(source: "\n query ComponentAdminSeasonRatingsCompanie /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "mutation Login($password: String!, $identifier: String!) {\n login(password: $password, identifier: $identifier) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Register($info: UserRegisterInput!) {\n register(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Logout {\n logout\n}\n\nmutation RequestPasswordReset($identifier: String!) {\n requestPasswordReset(identifier: $identifier)\n}\n\nmutation CheckPasswordReset($token: String!) {\n checkPasswordReset(token: $token) {\n firstName\n lastName\n email\n }\n}\n\nmutation UsePasswordReset($info: PasswordResetUseInput!) {\n usePasswordReset(info: $info) {\n errors {\n field\n message\n }\n entity\n }\n}\n\nmutation RequestPasswordResetFor($uid: String!) {\n requestPasswordResetFor(uid: $uid)\n}\n\nmutation UpdateTranslation($data: TranslationCreateInput!) {\n updateTranslation(data: $data) {\n key\n value\n language\n }\n}\n\nmutation UpdateProfile($info: UserCreateInput!) {\n updateProfile(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation UpdateUser($uid: String!, $info: UserUpdateInput!) {\n updateUser(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation UpdatePassword($currentPassword: String!, $newPassword: String!, $newPasswordRepeat: String!) {\n updatePassword(\n currentPassword: $currentPassword\n newPassword: $newPassword\n newPasswordRepeat: $newPasswordRepeat\n ) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation ValidateVat($vat: String!) {\n validateVat(vat: $vat) {\n valid\n exists\n info {\n address\n legalName\n vat\n }\n }\n}\n\nmutation CreateIndustry($name: String!) {\n createIndustry(name: $name) {\n name\n }\n}\n\nmutation RenameIndustry($oldName: String!, $newName: String!) {\n renameIndustry(oldName: $oldName, newName: $newName) {\n name\n }\n}\n\nmutation CreateTalkCategory($name: String!, $season: String!) {\n createTalkCategory(name: $name, season: $season) {\n name\n }\n}\n\nmutation RenameTalkCategory($oldName: String!, $newName: String!, $season: String!) {\n renameTalkCategory(oldName: $oldName, newName: $newName, season: $season) {\n name\n }\n}\n\nmutation RegisterCompany($info: CreateCompanyInput!) {\n registerCompany(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation UpdateCompanyInfo($info: CreateCompanyInput!) {\n updateCompanyInfo(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation CreatePressRelease($info: PressReleaseWithFilesCreateInput!) {\n createPressRelease(info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdatePressRelease($uid: String!, $info: PressReleaseWithFilesCreateInput!) {\n updatePressRelease(uid: $uid, info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation EditApprovedCompanyApplication($info: CompanyApplicationApprovedEditInput!) {\n editApprovedCompanyApplication(info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdateResume($info: ResumeCreateInput!) {\n updateResume(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation CreateNews($info: NewsCreateInput!) {\n createNews(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n slug\n }\n }\n}\n\nmutation EditNews($uid: String!, $info: NewsCreateInput!) {\n editNews(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_News\n }\n }\n}\n\nmutation DeleteNews($uid: String!) {\n deleteNews(uid: $uid)\n}\n\nmutation CreateGalleryImage($info: GalleryImageCreateInput!) {\n createGalleryImage(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation EditGalleryImage($uid: String!, $info: GalleryImageCreateInput!) {\n editGalleryImage(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_GalleryImage\n }\n }\n}\n\nmutation DeleteGalleryImage($uid: String!) {\n deleteGalleryImage(uid: $uid)\n}"): (typeof documents)["mutation Login($password: String!, $identifier: String!) {\n login(password: $password, identifier: $identifier) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Register($info: UserRegisterInput!) {\n register(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Logout {\n logout\n}\n\nmutation RequestPasswordReset($identifier: String!) {\n requestPasswordReset(identifier: $identifier)\n}\n\nmutation CheckPasswordReset($token: String!) {\n checkPasswordReset(token: $token) {\n firstName\n lastName\n email\n }\n}\n\nmutation UsePasswordReset($info: PasswordResetUseInput!) {\n usePasswordReset(info: $info) {\n errors {\n field\n message\n }\n entity\n }\n}\n\nmutation RequestPasswordResetFor($uid: String!) {\n requestPasswordResetFor(uid: $uid)\n}\n\nmutation UpdateTranslation($data: TranslationCreateInput!) {\n updateTranslation(data: $data) {\n key\n value\n language\n }\n}\n\nmutation UpdateProfile($info: UserCreateInput!) {\n updateProfile(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation UpdateUser($uid: String!, $info: UserUpdateInput!) {\n updateUser(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation UpdatePassword($currentPassword: String!, $newPassword: String!, $newPasswordRepeat: String!) {\n updatePassword(\n currentPassword: $currentPassword\n newPassword: $newPassword\n newPasswordRepeat: $newPasswordRepeat\n ) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation ValidateVat($vat: String!) {\n validateVat(vat: $vat) {\n valid\n exists\n info {\n address\n legalName\n vat\n }\n }\n}\n\nmutation CreateIndustry($name: String!) {\n createIndustry(name: $name) {\n name\n }\n}\n\nmutation RenameIndustry($oldName: String!, $newName: String!) {\n renameIndustry(oldName: $oldName, newName: $newName) {\n name\n }\n}\n\nmutation CreateTalkCategory($name: String!, $season: String!) {\n createTalkCategory(name: $name, season: $season) {\n name\n }\n}\n\nmutation RenameTalkCategory($oldName: String!, $newName: String!, $season: String!) {\n renameTalkCategory(oldName: $oldName, newName: $newName, season: $season) {\n name\n }\n}\n\nmutation RegisterCompany($info: CreateCompanyInput!) {\n registerCompany(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation UpdateCompanyInfo($info: CreateCompanyInput!) {\n updateCompanyInfo(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation CreatePressRelease($info: PressReleaseWithFilesCreateInput!) {\n createPressRelease(info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdatePressRelease($uid: String!, $info: PressReleaseWithFilesCreateInput!) {\n updatePressRelease(uid: $uid, info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation EditApprovedCompanyApplication($info: CompanyApplicationApprovedEditInput!) {\n editApprovedCompanyApplication(info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdateResume($info: ResumeCreateInput!) {\n updateResume(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation CreateNews($info: NewsCreateInput!) {\n createNews(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n slug\n }\n }\n}\n\nmutation EditNews($uid: String!, $info: NewsCreateInput!) {\n editNews(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_News\n }\n }\n}\n\nmutation DeleteNews($uid: String!) {\n deleteNews(uid: $uid)\n}\n\nmutation CreateGalleryImage($info: GalleryImageCreateInput!) {\n createGalleryImage(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation EditGalleryImage($uid: String!, $info: GalleryImageCreateInput!) {\n editGalleryImage(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_GalleryImage\n }\n }\n}\n\nmutation DeleteGalleryImage($uid: String!) {\n deleteGalleryImage(uid: $uid)\n}"]; +export function graphql(source: "mutation Login($password: String!, $identifier: String!) {\n login(password: $password, identifier: $identifier) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Register($info: UserRegisterInput!) {\n register(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Logout {\n logout\n}\n\nmutation RequestPasswordReset($identifier: String!) {\n requestPasswordReset(identifier: $identifier)\n}\n\nmutation CheckPasswordReset($token: String!) {\n checkPasswordReset(token: $token) {\n firstName\n lastName\n email\n }\n}\n\nmutation UsePasswordReset($info: PasswordResetUseInput!) {\n usePasswordReset(info: $info) {\n errors {\n field\n message\n }\n entity\n }\n}\n\nmutation RequestPasswordResetFor($uid: String!) {\n requestPasswordResetFor(uid: $uid)\n}\n\nmutation UpdateTranslation($data: TranslationCreateInput!) {\n updateTranslation(data: $data) {\n key\n value\n language\n }\n}\n\nmutation UpdateProfile($info: UserCreateInput!) {\n updateProfile(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation UpdateUser($uid: String!, $info: UserUpdateInput!) {\n updateUser(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation UpdatePassword($currentPassword: String!, $newPassword: String!, $newPasswordRepeat: String!) {\n updatePassword(\n currentPassword: $currentPassword\n newPassword: $newPassword\n newPasswordRepeat: $newPasswordRepeat\n ) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation ValidateVat($vat: String!) {\n validateVat(vat: $vat) {\n valid\n exists\n info {\n address\n legalName\n vat\n }\n }\n}\n\nmutation CreateIndustry($name: String!) {\n createIndustry(name: $name) {\n name\n }\n}\n\nmutation RenameIndustry($oldName: String!, $newName: String!) {\n renameIndustry(oldName: $oldName, newName: $newName) {\n name\n }\n}\n\nmutation CreateTalkCategory($name: String!, $season: String!) {\n createTalkCategory(name: $name, season: $season) {\n name\n }\n}\n\nmutation RenameTalkCategory($oldName: String!, $newName: String!, $season: String!) {\n renameTalkCategory(oldName: $oldName, newName: $newName, season: $season) {\n name\n }\n}\n\nmutation RegisterCompany($info: CreateCompanyInput!) {\n registerCompany(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation UpdateCompanyInfo($info: CreateCompanyInput!) {\n updateCompanyInfo(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation CreatePressRelease($info: PressReleaseWithFilesCreateInput!) {\n createPressRelease(info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdatePressRelease($uid: String!, $info: PressReleaseWithFilesCreateInput!) {\n updatePressRelease(uid: $uid, info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation EditApprovedCompanyApplication($info: CompanyApplicationApprovedEditInput!) {\n editApprovedCompanyApplication(info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdateResume($info: ResumeCreateInput!) {\n updateResume(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation CreateNews($info: NewsCreateInput!) {\n createNews(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n slug\n }\n }\n}\n\nmutation EditNews($uid: String!, $info: NewsCreateInput!) {\n editNews(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_News\n }\n }\n}\n\nmutation DeleteNews($uid: String!) {\n deleteNews(uid: $uid)\n}"): (typeof documents)["mutation Login($password: String!, $identifier: String!) {\n login(password: $password, identifier: $identifier) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Register($info: UserRegisterInput!) {\n register(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation Logout {\n logout\n}\n\nmutation RequestPasswordReset($identifier: String!) {\n requestPasswordReset(identifier: $identifier)\n}\n\nmutation CheckPasswordReset($token: String!) {\n checkPasswordReset(token: $token) {\n firstName\n lastName\n email\n }\n}\n\nmutation UsePasswordReset($info: PasswordResetUseInput!) {\n usePasswordReset(info: $info) {\n errors {\n field\n message\n }\n entity\n }\n}\n\nmutation RequestPasswordResetFor($uid: String!) {\n requestPasswordResetFor(uid: $uid)\n}\n\nmutation UpdateTranslation($data: TranslationCreateInput!) {\n updateTranslation(data: $data) {\n key\n value\n language\n }\n}\n\nmutation UpdateProfile($info: UserCreateInput!) {\n updateProfile(info: $info) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation UpdateUser($uid: String!, $info: UserUpdateInput!) {\n updateUser(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation UpdatePassword($currentPassword: String!, $newPassword: String!, $newPasswordRepeat: String!) {\n updatePassword(\n currentPassword: $currentPassword\n newPassword: $newPassword\n newPasswordRepeat: $newPasswordRepeat\n ) {\n errors {\n field\n message\n }\n entity {\n ...frag_UserProfile\n }\n }\n}\n\nmutation ValidateVat($vat: String!) {\n validateVat(vat: $vat) {\n valid\n exists\n info {\n address\n legalName\n vat\n }\n }\n}\n\nmutation CreateIndustry($name: String!) {\n createIndustry(name: $name) {\n name\n }\n}\n\nmutation RenameIndustry($oldName: String!, $newName: String!) {\n renameIndustry(oldName: $oldName, newName: $newName) {\n name\n }\n}\n\nmutation CreateTalkCategory($name: String!, $season: String!) {\n createTalkCategory(name: $name, season: $season) {\n name\n }\n}\n\nmutation RenameTalkCategory($oldName: String!, $newName: String!, $season: String!) {\n renameTalkCategory(oldName: $oldName, newName: $newName, season: $season) {\n name\n }\n}\n\nmutation RegisterCompany($info: CreateCompanyInput!) {\n registerCompany(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation UpdateCompanyInfo($info: CreateCompanyInput!) {\n updateCompanyInfo(info: $info) {\n errors {\n message\n field\n }\n entity {\n uid\n vat\n legalName\n address\n brandName\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n }\n}\n\nmutation CreatePressRelease($info: PressReleaseWithFilesCreateInput!) {\n createPressRelease(info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdatePressRelease($uid: String!, $info: PressReleaseWithFilesCreateInput!) {\n updatePressRelease(uid: $uid, info: $info) {\n entity {\n title\n published\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation EditApprovedCompanyApplication($info: CompanyApplicationApprovedEditInput!) {\n editApprovedCompanyApplication(info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n }\n errors {\n field\n message\n }\n }\n}\n\nmutation UpdateResume($info: ResumeCreateInput!) {\n updateResume(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n }\n }\n}\n\nmutation CreateNews($info: NewsCreateInput!) {\n createNews(info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n slug\n }\n }\n}\n\nmutation EditNews($uid: String!, $info: NewsCreateInput!) {\n editNews(uid: $uid, info: $info) {\n errors {\n field\n message\n }\n entity {\n uid\n ...frag_News\n }\n }\n}\n\nmutation DeleteNews($uid: String!) {\n deleteNews(uid: $uid)\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "fragment frag_Season on Season {\n uid\n name\n startsAt\n endsAt\n applicationsFrom\n applicationsUntil\n applicationsEditableFrom\n applicationsEditableUntil\n showParticipantsFrom\n showParticipantsUntil\n showPartnersFrom\n showPartnersUntil\n showSponsorsFrom\n showSponsorsUntil\n eventFrom\n eventUntil\n feedbackFrom\n feedbackUntil\n scheduleFrom\n scheduleUntil\n}\n\nfragment frag_UserProfile on User {\n uid\n name\n firstName\n lastName\n email\n phone\n language\n roles {\n name\n }\n companies {\n uid\n vat\n legalName\n brandName\n address\n website\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n}\n\nfragment frag_ApplicationPresenter on ApplicationPresenter {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n}\n\nfragment frag_AllFeedback on CompanyApplicationFeedback {\n applicationComments\n applicationRating\n attendanceRating\n dateComments\n dateRating\n experienceComments\n foodRating\n mostLiked\n onsiteRating\n overallComment\n overallRating\n recommended\n testimonial\n timeRating\n createdAt\n updatedAt\n}\n\nfragment frag_CompanyApplication on CompanyApplication {\n booth\n wantsPanel\n wantsCocktail\n contactPerson {\n name\n email\n phone\n }\n talk {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n category {\n name\n }\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n workshop {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n goal\n notesEn\n notesHr\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n cocktail {\n name\n colour\n }\n panelParticipants {\n ...frag_ApplicationPresenter\n }\n approval {\n cocktail\n panel\n talkParticipants\n workshopParticipants\n booth\n }\n feedback {\n ...frag_AllFeedback\n }\n}\n\nfragment frag_Company on Company {\n uid\n legalName\n brandName\n descriptionEn\n descriptionHr\n address\n vat\n website\n industry {\n name\n }\n}\n\nfragment frag_News on News {\n lang\n slug\n date\n photo {\n thumbUrl\n fullUrl\n }\n title\n description\n content\n}\n\nfragment frag_GalleryImage on GalleryImage {\n uid\n name\n order\n visible\n photo {\n thumbUrl\n fullUrl\n }\n}\n\nquery Profile {\n profile {\n ...frag_UserProfile\n }\n}\n\nquery TranslationsFor($language: String!) {\n allTranslationsFor(language: $language) {\n key\n value\n }\n}\n\nquery InitialData($language: String!) {\n profile {\n ...frag_UserProfile\n }\n allTranslationsFor(language: $language) {\n key\n value\n }\n currentSeason {\n ...frag_Season\n }\n}\n\nquery PageIndexData($language: String!) {\n sponsors {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n partners {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n news(lang: $language, filter: {take: 3}) {\n ...frag_News\n }\n galleryImages(filter: {take: 6}) {\n ...frag_GalleryImage\n }\n}\n\nquery Company($vat: String!) {\n company(vat: $vat) {\n ...frag_Company\n }\n}\n\nquery CompanyInfo($uid: String!) {\n companyInfo(uid: $uid) {\n uid\n brandName\n descriptionEn\n descriptionHr\n website\n rasterLogo {\n thumbUrl\n fullUrl\n }\n program {\n booth\n talk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n reservation\n presenters {\n bioHr\n bioEn\n firstName\n lastName\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n workshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n notesHr\n notesEn\n reservation\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n panelParticipants {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n panel {\n uid\n name\n description\n reservation\n companies {\n uid\n brandName\n rasterLogo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n }\n }\n}\n\nquery Industries {\n industries {\n name\n }\n}\n\nquery TalkCategories($season: String) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n}\n\nquery PressRelease($uid: String!) {\n pressRelease(uid: $uid) {\n title\n published\n file {\n name\n mimeType\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery PressReleases($season: String) {\n pressReleases(\n orderBy: {published: desc}\n where: {forSeason: {is: {uid: {equals: $season}}}}\n ) {\n uid\n title\n published\n file {\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery AllNews($filter: NewsFilter) {\n allNews(filter: $filter) {\n uid\n ...frag_News\n }\n}\n\nquery News($lang: String!, $filter: NewsFilter) {\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItem($slug: String!, $lang: String!, $filter: NewsFilter) {\n newsItem(slug: $slug) {\n ...frag_News\n }\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItemByUid($uid: String!) {\n newsItemByUid(uid: $uid) {\n ...frag_News\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery GalleryImages($filter: GalleryImageFilter) {\n galleryImages(filter: $filter) {\n ...frag_GalleryImage\n }\n}\n\nquery AllGalleryImages {\n allGalleryImages {\n ...frag_GalleryImage\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery GalleryImagItemByUid($uid: String!) {\n galleryImageItemByUid(uid: $uid) {\n ...frag_GalleryImage\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery AdminInitialData {\n industries {\n name\n }\n seasons(orderBy: {endsAt: desc}) {\n ...frag_Season\n }\n}\n\nquery AdminCompanyApplication($company: String!, $season: String!) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n name\n key\n }\n companyApplicationFor(company: $company, season: $season) {\n ...frag_CompanyApplication\n forCompany {\n ...frag_Company\n }\n }\n}\n\nquery AdminCompanyApplications($season: String!) {\n industries {\n name\n }\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n key\n name\n }\n companyApplications(season: $season) {\n wantsCocktail\n wantsPanel\n booth\n talk {\n language\n titleEn\n category {\n name\n }\n }\n workshop {\n language\n titleEn\n }\n forCompany {\n uid\n brandName\n industry {\n name\n }\n }\n forSeason {\n uid\n }\n }\n}\n\nquery CurrentCompanyApplication {\n talkCategories {\n name\n }\n booths {\n name\n key\n }\n companyApplication {\n ...frag_CompanyApplication\n }\n}\n\nquery MyResume {\n profile {\n resume {\n uid\n updatedAt\n city\n cv {\n url\n name\n mimeType\n }\n faculty {\n name\n module\n specialization\n }\n interests\n technologies\n projects {\n project\n position\n start\n until\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n studyYears {\n studyType\n studyYear\n }\n extraField\n }\n }\n}\n\nquery Resume($uid: String!) {\n resume(uid: $uid) {\n uid\n faculty {\n name\n module\n }\n user {\n name\n email\n phone\n }\n studyYears {\n studyYear\n studyType\n }\n projects {\n project\n position\n start\n until\n }\n technologies\n interests\n city\n cv {\n url\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n extraField\n }\n resumeIsFavourite(uid: $uid)\n}\n\nquery ProfileBaseData {\n booths {\n key\n name\n }\n companyApplication {\n workshop {\n titleEn\n }\n talk {\n titleEn\n }\n booth\n wantsPanel\n wantsCocktail\n approval {\n booth\n workshopParticipants\n talkParticipants\n panel\n cocktail\n }\n userApplications {\n workshop\n talk\n }\n }\n profile {\n resume {\n uid\n }\n }\n calendar {\n uid\n title\n forWorkshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forTalk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forPanel {\n uid\n name\n description\n reservation\n }\n }\n currentSeason {\n ...frag_Season\n companyComponentAverageRatings {\n component\n averageRating\n }\n }\n}\n\nquery AdminFeedbackInfo($seasonUid: String!) {\n companyApplications(\n season: $seasonUid\n orderBy: {forCompany: {brandName: desc}}\n ) {\n forCompany {\n uid\n brandName\n }\n feedback {\n ...frag_AllFeedback\n }\n }\n}\n\nquery PageAdminSeasonScheduleBase($seasonUid: String!) {\n participants(season: $seasonUid) {\n uid\n brandName\n program {\n talk {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n workshop {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n panelParticipants {\n firstName\n lastName\n photo {\n fullUrl\n thumbUrl\n }\n }\n }\n }\n season(uid: $seasonUid) {\n panel {\n uid\n name\n description\n companies {\n uid\n }\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n calendar {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n}\n\nquery AdminReservationsData($seasonUid: String!) {\n season(uid: $seasonUid) {\n reservations {\n uid\n type\n count\n }\n }\n participants(season: $seasonUid) {\n uid\n vat\n brandName\n program {\n workshop {\n uid\n titleHr\n }\n talk {\n uid\n titleHr\n }\n panel {\n uid\n name\n }\n }\n }\n}\n\nquery PageScheduleBase {\n calendar {\n uid\n title\n text\n start\n end\n type\n grouped\n location\n hasEvent\n }\n}\n\nquery PageAdminUserEditBase($uid: String!) {\n user(uid: $uid) {\n uid\n name\n firstName\n lastName\n email\n phone\n roles {\n name\n }\n eventLog {\n id\n date\n name\n data\n }\n }\n roles {\n name\n }\n sessionsFor(uid: $uid) {\n sessionId\n ip\n userAgent\n loggedInAt\n }\n}"): (typeof documents)["fragment frag_Season on Season {\n uid\n name\n startsAt\n endsAt\n applicationsFrom\n applicationsUntil\n applicationsEditableFrom\n applicationsEditableUntil\n showParticipantsFrom\n showParticipantsUntil\n showPartnersFrom\n showPartnersUntil\n showSponsorsFrom\n showSponsorsUntil\n eventFrom\n eventUntil\n feedbackFrom\n feedbackUntil\n scheduleFrom\n scheduleUntil\n}\n\nfragment frag_UserProfile on User {\n uid\n name\n firstName\n lastName\n email\n phone\n language\n roles {\n name\n }\n companies {\n uid\n vat\n legalName\n brandName\n address\n website\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n}\n\nfragment frag_ApplicationPresenter on ApplicationPresenter {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n}\n\nfragment frag_AllFeedback on CompanyApplicationFeedback {\n applicationComments\n applicationRating\n attendanceRating\n dateComments\n dateRating\n experienceComments\n foodRating\n mostLiked\n onsiteRating\n overallComment\n overallRating\n recommended\n testimonial\n timeRating\n createdAt\n updatedAt\n}\n\nfragment frag_CompanyApplication on CompanyApplication {\n booth\n wantsPanel\n wantsCocktail\n contactPerson {\n name\n email\n phone\n }\n talk {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n category {\n name\n }\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n workshop {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n goal\n notesEn\n notesHr\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n cocktail {\n name\n colour\n }\n panelParticipants {\n ...frag_ApplicationPresenter\n }\n approval {\n cocktail\n panel\n talkParticipants\n workshopParticipants\n booth\n }\n feedback {\n ...frag_AllFeedback\n }\n}\n\nfragment frag_Company on Company {\n uid\n legalName\n brandName\n descriptionEn\n descriptionHr\n address\n vat\n website\n industry {\n name\n }\n}\n\nfragment frag_News on News {\n lang\n slug\n date\n photo {\n thumbUrl\n fullUrl\n }\n title\n description\n content\n}\n\nfragment frag_GalleryImage on GalleryImage {\n uid\n name\n order\n visible\n photo {\n thumbUrl\n fullUrl\n }\n}\n\nquery Profile {\n profile {\n ...frag_UserProfile\n }\n}\n\nquery TranslationsFor($language: String!) {\n allTranslationsFor(language: $language) {\n key\n value\n }\n}\n\nquery InitialData($language: String!) {\n profile {\n ...frag_UserProfile\n }\n allTranslationsFor(language: $language) {\n key\n value\n }\n currentSeason {\n ...frag_Season\n }\n}\n\nquery PageIndexData($language: String!) {\n sponsors {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n partners {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n news(lang: $language, filter: {take: 3}) {\n ...frag_News\n }\n galleryImages(filter: {take: 6}) {\n ...frag_GalleryImage\n }\n}\n\nquery Company($vat: String!) {\n company(vat: $vat) {\n ...frag_Company\n }\n}\n\nquery CompanyInfo($uid: String!) {\n companyInfo(uid: $uid) {\n uid\n brandName\n descriptionEn\n descriptionHr\n website\n rasterLogo {\n thumbUrl\n fullUrl\n }\n program {\n booth\n talk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n reservation\n presenters {\n bioHr\n bioEn\n firstName\n lastName\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n workshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n notesHr\n notesEn\n reservation\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n panelParticipants {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n panel {\n uid\n name\n description\n reservation\n companies {\n uid\n brandName\n rasterLogo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n }\n }\n}\n\nquery Industries {\n industries {\n name\n }\n}\n\nquery TalkCategories($season: String) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n}\n\nquery PressRelease($uid: String!) {\n pressRelease(uid: $uid) {\n title\n published\n file {\n name\n mimeType\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery PressReleases($season: String) {\n pressReleases(\n orderBy: {published: desc}\n where: {forSeason: {is: {uid: {equals: $season}}}}\n ) {\n uid\n title\n published\n file {\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery AllNews($filter: NewsFilter) {\n allNews(filter: $filter) {\n uid\n ...frag_News\n }\n}\n\nquery News($lang: String!, $filter: NewsFilter) {\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItem($slug: String!, $lang: String!, $filter: NewsFilter) {\n newsItem(slug: $slug) {\n ...frag_News\n }\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItemByUid($uid: String!) {\n newsItemByUid(uid: $uid) {\n ...frag_News\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery GalleryImages($filter: GalleryImageFilter) {\n galleryImages(filter: $filter) {\n ...frag_GalleryImage\n }\n}\n\nquery AllGalleryImages {\n allGalleryImages {\n ...frag_GalleryImage\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery GalleryImagItemByUid($uid: String!) {\n galleryImageItemByUid(uid: $uid) {\n ...frag_GalleryImage\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery AdminInitialData {\n industries {\n name\n }\n seasons(orderBy: {endsAt: desc}) {\n ...frag_Season\n }\n}\n\nquery AdminCompanyApplication($company: String!, $season: String!) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n name\n key\n }\n companyApplicationFor(company: $company, season: $season) {\n ...frag_CompanyApplication\n forCompany {\n ...frag_Company\n }\n }\n}\n\nquery AdminCompanyApplications($season: String!) {\n industries {\n name\n }\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n key\n name\n }\n companyApplications(season: $season) {\n wantsCocktail\n wantsPanel\n booth\n talk {\n language\n titleEn\n category {\n name\n }\n }\n workshop {\n language\n titleEn\n }\n forCompany {\n uid\n brandName\n industry {\n name\n }\n }\n forSeason {\n uid\n }\n }\n}\n\nquery CurrentCompanyApplication {\n talkCategories {\n name\n }\n booths {\n name\n key\n }\n companyApplication {\n ...frag_CompanyApplication\n }\n}\n\nquery MyResume {\n profile {\n resume {\n uid\n updatedAt\n city\n cv {\n url\n name\n mimeType\n }\n faculty {\n name\n module\n specialization\n }\n interests\n technologies\n projects {\n project\n position\n start\n until\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n studyYears {\n studyType\n studyYear\n }\n extraField\n }\n }\n}\n\nquery Resume($uid: String!) {\n resume(uid: $uid) {\n uid\n faculty {\n name\n module\n }\n user {\n name\n email\n phone\n }\n studyYears {\n studyYear\n studyType\n }\n projects {\n project\n position\n start\n until\n }\n technologies\n interests\n city\n cv {\n url\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n extraField\n }\n resumeIsFavourite(uid: $uid)\n}\n\nquery ProfileBaseData {\n booths {\n key\n name\n }\n companyApplication {\n workshop {\n titleEn\n }\n talk {\n titleEn\n }\n booth\n wantsPanel\n wantsCocktail\n approval {\n booth\n workshopParticipants\n talkParticipants\n panel\n cocktail\n }\n userApplications {\n workshop\n talk\n }\n }\n profile {\n resume {\n uid\n }\n }\n calendar {\n uid\n title\n forWorkshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forTalk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forPanel {\n uid\n name\n description\n reservation\n }\n }\n currentSeason {\n ...frag_Season\n companyComponentAverageRatings {\n component\n averageRating\n }\n }\n}\n\nquery AdminFeedbackInfo($seasonUid: String!) {\n companyApplications(\n season: $seasonUid\n orderBy: {forCompany: {brandName: desc}}\n ) {\n forCompany {\n uid\n brandName\n }\n feedback {\n ...frag_AllFeedback\n }\n }\n}\n\nquery PageAdminSeasonScheduleBase($seasonUid: String!) {\n participants(season: $seasonUid) {\n uid\n brandName\n program {\n talk {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n workshop {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n panelParticipants {\n firstName\n lastName\n photo {\n fullUrl\n thumbUrl\n }\n }\n }\n }\n season(uid: $seasonUid) {\n panel {\n uid\n name\n description\n companies {\n uid\n }\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n calendar {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n}\n\nquery AdminReservationsData($seasonUid: String!) {\n season(uid: $seasonUid) {\n reservations {\n uid\n type\n count\n }\n }\n participants(season: $seasonUid) {\n uid\n vat\n brandName\n program {\n workshop {\n uid\n titleHr\n }\n talk {\n uid\n titleHr\n }\n panel {\n uid\n name\n }\n }\n }\n}\n\nquery PageScheduleBase {\n calendar {\n uid\n title\n text\n start\n end\n type\n grouped\n location\n hasEvent\n }\n}\n\nquery PageAdminUserEditBase($uid: String!) {\n user(uid: $uid) {\n uid\n name\n firstName\n lastName\n email\n phone\n roles {\n name\n }\n eventLog {\n id\n date\n name\n data\n }\n }\n roles {\n name\n }\n sessionsFor(uid: $uid) {\n sessionId\n ip\n userAgent\n loggedInAt\n }\n}"]; +export function graphql(source: "fragment frag_Season on Season {\n uid\n name\n startsAt\n endsAt\n applicationsFrom\n applicationsUntil\n applicationsEditableFrom\n applicationsEditableUntil\n showParticipantsFrom\n showParticipantsUntil\n showPartnersFrom\n showPartnersUntil\n showSponsorsFrom\n showSponsorsUntil\n eventFrom\n eventUntil\n feedbackFrom\n feedbackUntil\n scheduleFrom\n scheduleUntil\n}\n\nfragment frag_UserProfile on User {\n uid\n name\n firstName\n lastName\n email\n phone\n language\n roles {\n name\n }\n companies {\n uid\n vat\n legalName\n brandName\n address\n website\n instagram\n facebook\n linkedIn\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n}\n\nfragment frag_ApplicationPresenter on ApplicationPresenter {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n}\n\nfragment frag_AllFeedback on CompanyApplicationFeedback {\n applicationComments\n applicationRating\n attendanceRating\n dateComments\n dateRating\n experienceComments\n foodRating\n mostLiked\n onsiteRating\n overallComment\n overallRating\n recommended\n testimonial\n timeRating\n createdAt\n updatedAt\n}\n\nfragment frag_CompanyApplication on CompanyApplication {\n booth\n wantsPanel\n wantsCocktail\n contactPerson {\n name\n email\n phone\n }\n talk {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n category {\n name\n }\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n workshop {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n goal\n notesEn\n notesHr\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n cocktail {\n name\n colour\n }\n panelParticipants {\n ...frag_ApplicationPresenter\n }\n approval {\n cocktail\n panel\n talkParticipants\n workshopParticipants\n booth\n }\n feedback {\n ...frag_AllFeedback\n }\n}\n\nfragment frag_Company on Company {\n uid\n legalName\n brandName\n descriptionEn\n descriptionHr\n address\n vat\n website\n instagram\n facebook\n linkedIn\n industry {\n name\n }\n}\n\nfragment frag_News on News {\n lang\n slug\n date\n photo {\n thumbUrl\n fullUrl\n }\n title\n description\n content\n}\n\nquery Profile {\n profile {\n ...frag_UserProfile\n }\n}\n\nquery TranslationsFor($language: String!) {\n allTranslationsFor(language: $language) {\n key\n value\n }\n}\n\nquery InitialData($language: String!) {\n profile {\n ...frag_UserProfile\n }\n allTranslationsFor(language: $language) {\n key\n value\n }\n currentSeason {\n ...frag_Season\n }\n}\n\nquery PageIndexData($language: String!) {\n sponsors {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n partners {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n news(lang: $language, filter: {take: 3}) {\n ...frag_News\n }\n}\n\nquery Company($vat: String!) {\n company(vat: $vat) {\n ...frag_Company\n }\n}\n\nquery CompanyInfo($uid: String!) {\n companyInfo(uid: $uid) {\n uid\n brandName\n descriptionEn\n descriptionHr\n website\n instagram\n facebook\n linkedIn\n rasterLogo {\n thumbUrl\n fullUrl\n }\n program {\n booth\n talk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n reservation\n presenters {\n bioHr\n bioEn\n firstName\n lastName\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n workshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n notesHr\n notesEn\n reservation\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n panelParticipants {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n panel {\n uid\n name\n description\n reservation\n companies {\n uid\n brandName\n rasterLogo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n }\n }\n}\n\nquery Industries {\n industries {\n name\n }\n}\n\nquery TalkCategories($season: String) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n}\n\nquery PressRelease($uid: String!) {\n pressRelease(uid: $uid) {\n title\n published\n file {\n name\n mimeType\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery PressReleases($season: String) {\n pressReleases(\n orderBy: {published: desc}\n where: {forSeason: {is: {uid: {equals: $season}}}}\n ) {\n uid\n title\n published\n file {\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery AllNews($filter: NewsFilter) {\n allNews(filter: $filter) {\n uid\n ...frag_News\n }\n}\n\nquery News($lang: String!, $filter: NewsFilter) {\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItem($slug: String!, $lang: String!, $filter: NewsFilter) {\n newsItem(slug: $slug) {\n ...frag_News\n }\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItemByUid($uid: String!) {\n newsItemByUid(uid: $uid) {\n ...frag_News\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery AdminInitialData {\n industries {\n name\n }\n seasons(orderBy: {endsAt: desc}) {\n ...frag_Season\n }\n}\n\nquery AdminCompanyApplication($company: String!, $season: String!) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n name\n key\n }\n companyApplicationFor(company: $company, season: $season) {\n ...frag_CompanyApplication\n forCompany {\n ...frag_Company\n }\n }\n}\n\nquery AdminCompanyApplications($season: String!) {\n industries {\n name\n }\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n key\n name\n }\n companyApplications(season: $season) {\n wantsCocktail\n wantsPanel\n booth\n talk {\n language\n titleEn\n category {\n name\n }\n }\n workshop {\n language\n titleEn\n }\n forCompany {\n uid\n brandName\n industry {\n name\n }\n }\n forSeason {\n uid\n }\n }\n}\n\nquery CurrentCompanyApplication {\n talkCategories {\n name\n }\n booths {\n name\n key\n }\n companyApplication {\n ...frag_CompanyApplication\n }\n}\n\nquery MyResume {\n profile {\n resume {\n uid\n updatedAt\n city\n cv {\n url\n name\n mimeType\n }\n faculty {\n name\n module\n specialization\n }\n interests\n technologies\n projects {\n project\n position\n start\n until\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n studyYears {\n studyType\n studyYear\n }\n extraField\n }\n }\n}\n\nquery Resume($uid: String!) {\n resume(uid: $uid) {\n uid\n faculty {\n name\n module\n }\n user {\n name\n email\n phone\n }\n studyYears {\n studyYear\n studyType\n }\n projects {\n project\n position\n start\n until\n }\n technologies\n interests\n city\n cv {\n url\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n extraField\n }\n resumeIsFavourite(uid: $uid)\n}\n\nquery ProfileBaseData {\n booths {\n key\n name\n }\n companyApplication {\n workshop {\n titleEn\n }\n talk {\n titleEn\n }\n booth\n wantsPanel\n wantsCocktail\n approval {\n booth\n workshopParticipants\n talkParticipants\n panel\n cocktail\n }\n userApplications {\n workshop\n talk\n }\n }\n profile {\n resume {\n uid\n }\n }\n calendar {\n uid\n title\n forWorkshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forTalk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forPanel {\n uid\n name\n description\n reservation\n }\n }\n currentSeason {\n ...frag_Season\n companyComponentAverageRatings {\n component\n averageRating\n }\n }\n}\n\nquery AdminFeedbackInfo($seasonUid: String!) {\n companyApplications(\n season: $seasonUid\n orderBy: {forCompany: {brandName: desc}}\n ) {\n forCompany {\n uid\n brandName\n }\n feedback {\n ...frag_AllFeedback\n }\n }\n}\n\nquery PageAdminSeasonScheduleBase($seasonUid: String!) {\n participants(season: $seasonUid) {\n uid\n brandName\n program {\n talk {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n workshop {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n panelParticipants {\n firstName\n lastName\n photo {\n fullUrl\n thumbUrl\n }\n }\n }\n }\n season(uid: $seasonUid) {\n panel {\n uid\n name\n description\n companies {\n uid\n }\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n calendar {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n}\n\nquery AdminReservationsData($seasonUid: String!) {\n season(uid: $seasonUid) {\n reservations {\n uid\n type\n count\n }\n }\n participants(season: $seasonUid) {\n uid\n vat\n brandName\n program {\n workshop {\n uid\n titleHr\n }\n talk {\n uid\n titleHr\n }\n panel {\n uid\n name\n }\n }\n }\n}\n\nquery PageScheduleBase {\n calendar {\n uid\n title\n text\n start\n end\n type\n grouped\n location\n hasEvent\n }\n}\n\nquery PageAdminUserEditBase($uid: String!) {\n user(uid: $uid) {\n uid\n name\n firstName\n lastName\n email\n phone\n roles {\n name\n }\n eventLog {\n id\n date\n name\n data\n }\n }\n roles {\n name\n }\n sessionsFor(uid: $uid) {\n sessionId\n ip\n userAgent\n loggedInAt\n }\n}"): (typeof documents)["fragment frag_Season on Season {\n uid\n name\n startsAt\n endsAt\n applicationsFrom\n applicationsUntil\n applicationsEditableFrom\n applicationsEditableUntil\n showParticipantsFrom\n showParticipantsUntil\n showPartnersFrom\n showPartnersUntil\n showSponsorsFrom\n showSponsorsUntil\n eventFrom\n eventUntil\n feedbackFrom\n feedbackUntil\n scheduleFrom\n scheduleUntil\n}\n\nfragment frag_UserProfile on User {\n uid\n name\n firstName\n lastName\n email\n phone\n language\n roles {\n name\n }\n companies {\n uid\n vat\n legalName\n brandName\n address\n website\n instagram\n facebook\n linkedIn\n descriptionEn\n descriptionHr\n industry {\n name\n }\n }\n}\n\nfragment frag_ApplicationPresenter on ApplicationPresenter {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n}\n\nfragment frag_AllFeedback on CompanyApplicationFeedback {\n applicationComments\n applicationRating\n attendanceRating\n dateComments\n dateRating\n experienceComments\n foodRating\n mostLiked\n onsiteRating\n overallComment\n overallRating\n recommended\n testimonial\n timeRating\n createdAt\n updatedAt\n}\n\nfragment frag_CompanyApplication on CompanyApplication {\n booth\n wantsPanel\n wantsCocktail\n contactPerson {\n name\n email\n phone\n }\n talk {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n category {\n name\n }\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n workshop {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n goal\n notesEn\n notesHr\n presenters {\n ...frag_ApplicationPresenter\n }\n }\n cocktail {\n name\n colour\n }\n panelParticipants {\n ...frag_ApplicationPresenter\n }\n approval {\n cocktail\n panel\n talkParticipants\n workshopParticipants\n booth\n }\n feedback {\n ...frag_AllFeedback\n }\n}\n\nfragment frag_Company on Company {\n uid\n legalName\n brandName\n descriptionEn\n descriptionHr\n address\n vat\n website\n instagram\n facebook\n linkedIn\n industry {\n name\n }\n}\n\nfragment frag_News on News {\n lang\n slug\n date\n photo {\n thumbUrl\n fullUrl\n }\n title\n description\n content\n}\n\nquery Profile {\n profile {\n ...frag_UserProfile\n }\n}\n\nquery TranslationsFor($language: String!) {\n allTranslationsFor(language: $language) {\n key\n value\n }\n}\n\nquery InitialData($language: String!) {\n profile {\n ...frag_UserProfile\n }\n allTranslationsFor(language: $language) {\n key\n value\n }\n currentSeason {\n ...frag_Season\n }\n}\n\nquery PageIndexData($language: String!) {\n sponsors {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n partners {\n name\n url\n photo {\n thumbUrl\n fullUrl\n }\n }\n news(lang: $language, filter: {take: 3}) {\n ...frag_News\n }\n}\n\nquery Company($vat: String!) {\n company(vat: $vat) {\n ...frag_Company\n }\n}\n\nquery CompanyInfo($uid: String!) {\n companyInfo(uid: $uid) {\n uid\n brandName\n descriptionEn\n descriptionHr\n website\n instagram\n facebook\n linkedIn\n rasterLogo {\n thumbUrl\n fullUrl\n }\n program {\n booth\n talk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n reservation\n presenters {\n bioHr\n bioEn\n firstName\n lastName\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n workshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n language\n notesHr\n notesEn\n reservation\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n panelParticipants {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n thumbUrl\n fullUrl\n }\n }\n panel {\n uid\n name\n description\n reservation\n companies {\n uid\n brandName\n rasterLogo {\n thumbUrl\n fullUrl\n }\n }\n event {\n start\n end\n location\n }\n }\n }\n }\n}\n\nquery Industries {\n industries {\n name\n }\n}\n\nquery TalkCategories($season: String) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n}\n\nquery PressRelease($uid: String!) {\n pressRelease(uid: $uid) {\n title\n published\n file {\n name\n mimeType\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery PressReleases($season: String) {\n pressReleases(\n orderBy: {published: desc}\n where: {forSeason: {is: {uid: {equals: $season}}}}\n ) {\n uid\n title\n published\n file {\n uid\n }\n forSeason {\n uid\n name\n }\n }\n}\n\nquery AllNews($filter: NewsFilter) {\n allNews(filter: $filter) {\n uid\n ...frag_News\n }\n}\n\nquery News($lang: String!, $filter: NewsFilter) {\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItem($slug: String!, $lang: String!, $filter: NewsFilter) {\n newsItem(slug: $slug) {\n ...frag_News\n }\n news(lang: $lang, filter: $filter) {\n ...frag_News\n }\n}\n\nquery NewsItemByUid($uid: String!) {\n newsItemByUid(uid: $uid) {\n ...frag_News\n uid\n photo {\n uid\n name\n full {\n mimeType\n }\n }\n }\n}\n\nquery AdminInitialData {\n industries {\n name\n }\n seasons(orderBy: {endsAt: desc}) {\n ...frag_Season\n }\n}\n\nquery AdminCompanyApplication($company: String!, $season: String!) {\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n name\n key\n }\n companyApplicationFor(company: $company, season: $season) {\n ...frag_CompanyApplication\n forCompany {\n ...frag_Company\n }\n }\n}\n\nquery AdminCompanyApplications($season: String!) {\n industries {\n name\n }\n talkCategories(where: {forSeason: {is: {uid: {equals: $season}}}}) {\n name\n }\n booths {\n key\n name\n }\n companyApplications(season: $season) {\n wantsCocktail\n wantsPanel\n booth\n talk {\n language\n titleEn\n category {\n name\n }\n }\n workshop {\n language\n titleEn\n }\n forCompany {\n uid\n brandName\n industry {\n name\n }\n }\n forSeason {\n uid\n }\n }\n}\n\nquery CurrentCompanyApplication {\n talkCategories {\n name\n }\n booths {\n name\n key\n }\n companyApplication {\n ...frag_CompanyApplication\n }\n}\n\nquery MyResume {\n profile {\n resume {\n uid\n updatedAt\n city\n cv {\n url\n name\n mimeType\n }\n faculty {\n name\n module\n specialization\n }\n interests\n technologies\n projects {\n project\n position\n start\n until\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n studyYears {\n studyType\n studyYear\n }\n extraField\n }\n }\n}\n\nquery Resume($uid: String!) {\n resume(uid: $uid) {\n uid\n faculty {\n name\n module\n }\n user {\n name\n email\n phone\n }\n studyYears {\n studyYear\n studyType\n }\n projects {\n project\n position\n start\n until\n }\n technologies\n interests\n city\n cv {\n url\n }\n volunteerExperiences {\n organisation\n position\n start\n until\n }\n workExperiences {\n company\n position\n start\n until\n }\n extraField\n }\n resumeIsFavourite(uid: $uid)\n}\n\nquery ProfileBaseData {\n booths {\n key\n name\n }\n companyApplication {\n workshop {\n titleEn\n }\n talk {\n titleEn\n }\n booth\n wantsPanel\n wantsCocktail\n approval {\n booth\n workshopParticipants\n talkParticipants\n panel\n cocktail\n }\n userApplications {\n workshop\n talk\n }\n }\n profile {\n resume {\n uid\n }\n }\n calendar {\n uid\n title\n forWorkshop {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forTalk {\n uid\n titleHr\n titleEn\n descriptionHr\n descriptionEn\n reservation\n }\n forPanel {\n uid\n name\n description\n reservation\n }\n }\n currentSeason {\n ...frag_Season\n companyComponentAverageRatings {\n component\n averageRating\n }\n }\n}\n\nquery AdminFeedbackInfo($seasonUid: String!) {\n companyApplications(\n season: $seasonUid\n orderBy: {forCompany: {brandName: desc}}\n ) {\n forCompany {\n uid\n brandName\n }\n feedback {\n ...frag_AllFeedback\n }\n }\n}\n\nquery PageAdminSeasonScheduleBase($seasonUid: String!) {\n participants(season: $seasonUid) {\n uid\n brandName\n program {\n talk {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n workshop {\n uid\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n panelParticipants {\n firstName\n lastName\n photo {\n fullUrl\n thumbUrl\n }\n }\n }\n }\n season(uid: $seasonUid) {\n panel {\n uid\n name\n description\n companies {\n uid\n }\n event {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n calendar {\n uid\n type\n title\n start\n end\n location\n text\n grouped\n }\n }\n}\n\nquery AdminReservationsData($seasonUid: String!) {\n season(uid: $seasonUid) {\n reservations {\n uid\n type\n count\n }\n }\n participants(season: $seasonUid) {\n uid\n vat\n brandName\n program {\n workshop {\n uid\n titleHr\n }\n talk {\n uid\n titleHr\n }\n panel {\n uid\n name\n }\n }\n }\n}\n\nquery PageScheduleBase {\n calendar {\n uid\n title\n text\n start\n end\n type\n grouped\n location\n hasEvent\n }\n}\n\nquery PageAdminUserEditBase($uid: String!) {\n user(uid: $uid) {\n uid\n name\n firstName\n lastName\n email\n phone\n roles {\n name\n }\n eventLog {\n id\n date\n name\n data\n }\n }\n roles {\n name\n }\n sessionsFor(uid: $uid) {\n sessionId\n ip\n userAgent\n loggedInAt\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/graphql/client/graphql.ts b/graphql/client/graphql.ts index 23eaeb21..042b7a46 100644 --- a/graphql/client/graphql.ts +++ b/graphql/client/graphql.ts @@ -408,8 +408,11 @@ export type Company = { createdAt: Scalars['DateTimeISO']['output']; descriptionEn: Scalars['String']['output']; descriptionHr: Scalars['String']['output']; + facebook?: Maybe; industry?: Maybe; + instagram?: Maybe; legalName: Scalars['String']['output']; + linkedIn?: Maybe; logoHidden: Scalars['Boolean']['output']; members?: Maybe>; program?: Maybe; @@ -704,7 +707,10 @@ export type CompanyOrderByWithRelationInput = { brandName?: InputMaybe; descriptionEn?: InputMaybe; descriptionHr?: InputMaybe; + facebook?: InputMaybe; + instagram?: InputMaybe; legalName?: InputMaybe; + linkedIn?: InputMaybe; vat?: InputMaybe; website?: InputMaybe; }; @@ -778,9 +784,12 @@ export enum CompanyScalarFieldEnum { CreatedAt = 'createdAt', DescriptionEn = 'descriptionEn', DescriptionHr = 'descriptionHr', + Facebook = 'facebook', Id = 'id', IndustryId = 'industryId', + Instagram = 'instagram', LegalName = 'legalName', + LinkedIn = 'linkedIn', RasterLogoId = 'rasterLogoId', Uid = 'uid', UpdatedAt = 'updatedAt', @@ -836,7 +845,10 @@ export type CompanyWhereInput = { brandName?: InputMaybe; descriptionEn?: InputMaybe; descriptionHr?: InputMaybe; + facebook?: InputMaybe; + instagram?: InputMaybe; legalName?: InputMaybe; + linkedIn?: InputMaybe; vat?: InputMaybe; website?: InputMaybe; }; @@ -849,7 +861,10 @@ export type CompanyWhereUniqueInput = { brandName?: InputMaybe; descriptionEn?: InputMaybe; descriptionHr?: InputMaybe; + facebook?: InputMaybe; + instagram?: InputMaybe; legalName?: InputMaybe; + linkedIn?: InputMaybe; vat?: InputMaybe; website?: InputMaybe; }; @@ -864,8 +879,11 @@ export type CreateCompanyInput = { brandName: Scalars['String']['input']; descriptionEn: Scalars['String']['input']; descriptionHr: Scalars['String']['input']; + facebook?: InputMaybe; industry: Scalars['String']['input']; + instagram?: InputMaybe; legalName: Scalars['String']['input']; + linkedIn?: InputMaybe; rasterLogo?: InputMaybe; vat: Scalars['String']['input']; vectorLogo?: InputMaybe; @@ -1083,21 +1101,16 @@ export type FloatFilter = { export type GalleryImage = { name: Scalars['String']['output']; order: Scalars['Int']['output']; - photo?: Maybe; uid: Scalars['String']['output']; visible: Scalars['Boolean']['output']; }; export type GalleryImageCreateInput = { name: Scalars['String']['input']; - photo?: InputMaybe; + photo: Scalars['Upload']['input']; visible: Scalars['Boolean']['input']; }; -export type GalleryImageFilter = { - take?: InputMaybe; -}; - export type GalleryImageWhereInput = { AND?: InputMaybe>; NOT?: InputMaybe>; @@ -1518,7 +1531,7 @@ export type MutationDeleteCompanyPanelArgs = { export type MutationDeleteGalleryImageArgs = { - uid: Scalars['String']['input']; + galleryImage: Scalars['String']['input']; }; @@ -2038,7 +2051,6 @@ export type Query = { currentSeason?: Maybe; eventLog: EventLogPaginationResult; findFirstTranslation?: Maybe; - galleryImageItemByUid?: Maybe; galleryImages: Array; gateGuardianScanList?: Maybe>; industries: Array; @@ -2167,16 +2179,6 @@ export type QueryFindFirstTranslationArgs = { }; -export type QueryGalleryImageItemByUidArgs = { - uid: Scalars['String']['input']; -}; - - -export type QueryGalleryImagesArgs = { - filter?: InputMaybe; -}; - - export type QueryGateGuardianScanListArgs = { season: Scalars['String']['input']; }; @@ -3719,34 +3721,9 @@ export type DeleteNewsMutationVariables = Exact<{ export type DeleteNewsMutation = { deleteNews?: boolean | null }; -export type CreateGalleryImageMutationVariables = Exact<{ - info: GalleryImageCreateInput; -}>; - - -export type CreateGalleryImageMutation = { createGalleryImage?: { errors?: Array<{ field: string, message: string }> | null, entity?: { uid: string } | null } | null }; - -export type EditGalleryImageMutationVariables = Exact<{ - uid: Scalars['String']['input']; - info: GalleryImageCreateInput; -}>; - - -export type EditGalleryImageMutation = { editGalleryImage?: { errors?: Array<{ field: string, message: string }> | null, entity?: ( - { uid: string } - & { ' $fragmentRefs'?: { 'Frag_GalleryImageFragment': Frag_GalleryImageFragment } } - ) | null } | null }; - -export type DeleteGalleryImageMutationVariables = Exact<{ - uid: Scalars['String']['input']; -}>; - - -export type DeleteGalleryImageMutation = { deleteGalleryImage: boolean }; - export type Frag_SeasonFragment = { uid: string, name: string, startsAt: string | Date, endsAt: string | Date, applicationsFrom: string | Date, applicationsUntil: string | Date, applicationsEditableFrom: string | Date, applicationsEditableUntil: string | Date, showParticipantsFrom: string | Date, showParticipantsUntil: string | Date, showPartnersFrom: string | Date, showPartnersUntil: string | Date, showSponsorsFrom: string | Date, showSponsorsUntil: string | Date, eventFrom: string | Date, eventUntil: string | Date, feedbackFrom: string | Date, feedbackUntil: string | Date, scheduleFrom: string | Date, scheduleUntil: string | Date } & { ' $fragmentName'?: 'Frag_SeasonFragment' }; -export type Frag_UserProfileFragment = { uid: string, name: string, firstName: string, lastName: string, email: string, phone: string, language: string, roles: Array<{ name: string }>, companies: Array<{ uid: string, vat: string, legalName: string, brandName: string, address: string, website: string, descriptionEn: string, descriptionHr: string, industry?: { name: string } | null }> } & { ' $fragmentName'?: 'Frag_UserProfileFragment' }; +export type Frag_UserProfileFragment = { uid: string, name: string, firstName: string, lastName: string, email: string, phone: string, language: string, roles: Array<{ name: string }>, companies: Array<{ uid: string, vat: string, legalName: string, brandName: string, address: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, descriptionEn: string, descriptionHr: string, industry?: { name: string } | null }> } & { ' $fragmentName'?: 'Frag_UserProfileFragment' }; export type Frag_ApplicationPresenterFragment = { firstName: string, lastName: string, bioHr: string, bioEn: string, photo?: { name: string, uid: string, full: { mimeType: string } } | null } & { ' $fragmentName'?: 'Frag_ApplicationPresenterFragment' }; @@ -3754,12 +3731,10 @@ export type Frag_AllFeedbackFragment = { applicationComments: string, applicatio export type Frag_CompanyApplicationFragment = { booth?: string | null, wantsPanel: boolean, wantsCocktail: boolean, contactPerson?: { name: string, email: string, phone: string } | null, talk?: { titleEn: string, titleHr: string, descriptionEn: string, descriptionHr: string, language: string, category: { name: string }, presenters: Array<{ ' $fragmentRefs'?: { 'Frag_ApplicationPresenterFragment': Frag_ApplicationPresenterFragment } }> } | null, workshop?: { titleEn: string, titleHr: string, descriptionEn: string, descriptionHr: string, language: string, goal: string, notesEn: string, notesHr: string, presenters: Array<{ ' $fragmentRefs'?: { 'Frag_ApplicationPresenterFragment': Frag_ApplicationPresenterFragment } }> } | null, cocktail?: { name: string, colour: string } | null, panelParticipants: Array<{ ' $fragmentRefs'?: { 'Frag_ApplicationPresenterFragment': Frag_ApplicationPresenterFragment } }>, approval?: { cocktail: boolean, panel: boolean, talkParticipants: number, workshopParticipants: number, booth: boolean } | null, feedback?: { ' $fragmentRefs'?: { 'Frag_AllFeedbackFragment': Frag_AllFeedbackFragment } } | null } & { ' $fragmentName'?: 'Frag_CompanyApplicationFragment' }; -export type Frag_CompanyFragment = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, industry?: { name: string } | null } & { ' $fragmentName'?: 'Frag_CompanyFragment' }; +export type Frag_CompanyFragment = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, industry?: { name: string } | null } & { ' $fragmentName'?: 'Frag_CompanyFragment' }; export type Frag_NewsFragment = { lang: string, slug: string, date: string | Date, title: string, description: string, content: string, photo?: { thumbUrl: string, fullUrl: string } | null } & { ' $fragmentName'?: 'Frag_NewsFragment' }; -export type Frag_GalleryImageFragment = { uid: string, name: string, order: number, visible: boolean, photo?: { thumbUrl: string, fullUrl: string } | null } & { ' $fragmentName'?: 'Frag_GalleryImageFragment' }; - export type ProfileQueryVariables = Exact<{ [key: string]: never; }>; @@ -3784,7 +3759,7 @@ export type PageIndexDataQueryVariables = Exact<{ }>; -export type PageIndexDataQuery = { sponsors: Array<{ name: string, url: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, partners: Array<{ name: string, url: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, news: Array<{ ' $fragmentRefs'?: { 'Frag_NewsFragment': Frag_NewsFragment } }>, galleryImages: Array<{ ' $fragmentRefs'?: { 'Frag_GalleryImageFragment': Frag_GalleryImageFragment } }> }; +export type PageIndexDataQuery = { sponsors: Array<{ name: string, url: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, partners: Array<{ name: string, url: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, news: Array<{ ' $fragmentRefs'?: { 'Frag_NewsFragment': Frag_NewsFragment } }> }; export type CompanyQueryVariables = Exact<{ vat: Scalars['String']['input']; @@ -3798,7 +3773,7 @@ export type CompanyInfoQueryVariables = Exact<{ }>; -export type CompanyInfoQuery = { companyInfo?: { uid: string, brandName: string, descriptionEn: string, descriptionHr: string, website: string, rasterLogo?: { thumbUrl: string, fullUrl: string } | null, program?: { booth?: string | null, talk?: { uid: string, titleHr: string, titleEn: string, descriptionHr: string, descriptionEn: string, language: string, reservation: number, presenters: Array<{ bioHr: string, bioEn: string, firstName: string, lastName: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, event?: { start: string | Date, end: string | Date, location?: string | null } | null } | null, workshop?: { uid: string, titleHr: string, titleEn: string, descriptionHr: string, descriptionEn: string, language: string, notesHr: string, notesEn: string, reservation: number, presenters: Array<{ firstName: string, lastName: string, bioHr: string, bioEn: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, event?: { start: string | Date, end: string | Date, location?: string | null } | null } | null, panelParticipants: Array<{ firstName: string, lastName: string, bioHr: string, bioEn: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, panel?: { uid: string, name: string, description: string, reservation: number, companies: Array<{ uid: string, brandName: string, rasterLogo?: { thumbUrl: string, fullUrl: string } | null }>, event?: { start: string | Date, end: string | Date, location?: string | null } | null } | null } | null } | null }; +export type CompanyInfoQuery = { companyInfo?: { uid: string, brandName: string, descriptionEn: string, descriptionHr: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, rasterLogo?: { thumbUrl: string, fullUrl: string } | null, program?: { booth?: string | null, talk?: { uid: string, titleHr: string, titleEn: string, descriptionHr: string, descriptionEn: string, language: string, reservation: number, presenters: Array<{ bioHr: string, bioEn: string, firstName: string, lastName: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, event?: { start: string | Date, end: string | Date, location?: string | null } | null } | null, workshop?: { uid: string, titleHr: string, titleEn: string, descriptionHr: string, descriptionEn: string, language: string, notesHr: string, notesEn: string, reservation: number, presenters: Array<{ firstName: string, lastName: string, bioHr: string, bioEn: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, event?: { start: string | Date, end: string | Date, location?: string | null } | null } | null, panelParticipants: Array<{ firstName: string, lastName: string, bioHr: string, bioEn: string, photo?: { thumbUrl: string, fullUrl: string } | null }>, panel?: { uid: string, name: string, description: string, reservation: number, companies: Array<{ uid: string, brandName: string, rasterLogo?: { thumbUrl: string, fullUrl: string } | null }>, event?: { start: string | Date, end: string | Date, location?: string | null } | null } | null } | null } | null }; export type IndustriesQueryVariables = Exact<{ [key: string]: never; }>; @@ -3863,31 +3838,6 @@ export type NewsItemByUidQuery = { newsItemByUid?: ( & { ' $fragmentRefs'?: { 'Frag_NewsFragment': Frag_NewsFragment } } ) | null }; -export type GalleryImagesQueryVariables = Exact<{ - filter?: InputMaybe; -}>; - - -export type GalleryImagesQuery = { galleryImages: Array<{ ' $fragmentRefs'?: { 'Frag_GalleryImageFragment': Frag_GalleryImageFragment } }> }; - -export type AllGalleryImagesQueryVariables = Exact<{ [key: string]: never; }>; - - -export type AllGalleryImagesQuery = { allGalleryImages: Array<( - { uid: string, photo?: { uid: string, name: string, full: { mimeType: string } } | null } - & { ' $fragmentRefs'?: { 'Frag_GalleryImageFragment': Frag_GalleryImageFragment } } - )> }; - -export type GalleryImagItemByUidQueryVariables = Exact<{ - uid: Scalars['String']['input']; -}>; - - -export type GalleryImagItemByUidQuery = { galleryImageItemByUid?: ( - { uid: string, photo?: { uid: string, name: string, full: { mimeType: string } } | null } - & { ' $fragmentRefs'?: { 'Frag_GalleryImageFragment': Frag_GalleryImageFragment } } - ) | null }; - export type AdminInitialDataQueryVariables = Exact<{ [key: string]: never; }>; @@ -4226,26 +4176,25 @@ export type ResumeSetIsFavouriteMutationVariables = Exact<{ export type ResumeSetIsFavouriteMutation = { resumeSetIsFavourite: boolean }; export const Frag_SeasonFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Season"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Season"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"startsAt"}},{"kind":"Field","name":{"kind":"Name","value":"endsAt"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"eventFrom"}},{"kind":"Field","name":{"kind":"Name","value":"eventUntil"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackFrom"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackUntil"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleFrom"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleUntil"}}]}}]} as unknown as DocumentNode; -export const Frag_UserProfileFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; +export const Frag_UserProfileFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; export const Frag_ApplicationPresenterFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_ApplicationPresenter"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ApplicationPresenter"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}}]} as unknown as DocumentNode; export const Frag_AllFeedbackFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_AllFeedback"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplicationFeedback"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"applicationComments"}},{"kind":"Field","name":{"kind":"Name","value":"applicationRating"}},{"kind":"Field","name":{"kind":"Name","value":"attendanceRating"}},{"kind":"Field","name":{"kind":"Name","value":"dateComments"}},{"kind":"Field","name":{"kind":"Name","value":"dateRating"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComments"}},{"kind":"Field","name":{"kind":"Name","value":"foodRating"}},{"kind":"Field","name":{"kind":"Name","value":"mostLiked"}},{"kind":"Field","name":{"kind":"Name","value":"onsiteRating"}},{"kind":"Field","name":{"kind":"Name","value":"overallComment"}},{"kind":"Field","name":{"kind":"Name","value":"overallRating"}},{"kind":"Field","name":{"kind":"Name","value":"recommended"}},{"kind":"Field","name":{"kind":"Name","value":"testimonial"}},{"kind":"Field","name":{"kind":"Name","value":"timeRating"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode; export const Frag_CompanyApplicationFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_CompanyApplication"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplication"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"booth"}},{"kind":"Field","name":{"kind":"Name","value":"wantsPanel"}},{"kind":"Field","name":{"kind":"Name","value":"wantsCocktail"}},{"kind":"Field","name":{"kind":"Name","value":"contactPerson"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}}]}},{"kind":"Field","name":{"kind":"Name","value":"talk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"workshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"goal"}},{"kind":"Field","name":{"kind":"Name","value":"notesEn"}},{"kind":"Field","name":{"kind":"Name","value":"notesHr"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"cocktail"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"colour"}}]}},{"kind":"Field","name":{"kind":"Name","value":"panelParticipants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approval"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cocktail"}},{"kind":"Field","name":{"kind":"Name","value":"panel"}},{"kind":"Field","name":{"kind":"Name","value":"talkParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"workshopParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"booth"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feedback"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_AllFeedback"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_ApplicationPresenter"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ApplicationPresenter"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_AllFeedback"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplicationFeedback"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"applicationComments"}},{"kind":"Field","name":{"kind":"Name","value":"applicationRating"}},{"kind":"Field","name":{"kind":"Name","value":"attendanceRating"}},{"kind":"Field","name":{"kind":"Name","value":"dateComments"}},{"kind":"Field","name":{"kind":"Name","value":"dateRating"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComments"}},{"kind":"Field","name":{"kind":"Name","value":"foodRating"}},{"kind":"Field","name":{"kind":"Name","value":"mostLiked"}},{"kind":"Field","name":{"kind":"Name","value":"onsiteRating"}},{"kind":"Field","name":{"kind":"Name","value":"overallComment"}},{"kind":"Field","name":{"kind":"Name","value":"overallRating"}},{"kind":"Field","name":{"kind":"Name","value":"recommended"}},{"kind":"Field","name":{"kind":"Name","value":"testimonial"}},{"kind":"Field","name":{"kind":"Name","value":"timeRating"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode; -export const Frag_CompanyFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Company"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; +export const Frag_CompanyFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Company"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; export const Frag_NewsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"News"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lang"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}}]} as unknown as DocumentNode; -export const Frag_GalleryImageFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_GalleryImage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"visible"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}}]} as unknown as DocumentNode; export const StoreCalendarEventsAllCalendarFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"StoreCalendarEventsAllCalendarFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CalendarItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"location"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"capacity"}},{"kind":"Field","name":{"kind":"Name","value":"forWorkshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}}]}},{"kind":"Field","name":{"kind":"Name","value":"forTalk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}}]}},{"kind":"Field","name":{"kind":"Name","value":"forPanel"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"rasterLogo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}},{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}}]}}]}}]}}]} as unknown as DocumentNode; export const ComponentAdminSeasonRatingsCompaniesCompanyComments_DataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ComponentAdminSeasonRatingsCompaniesCompanyComments_Data"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"seasonUid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"companyUid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"companyComponentAverageRatings"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"seasonUid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"seasonUid"}}},{"kind":"Argument","name":{"kind":"Name","value":"companyUid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"companyUid"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"component"}},{"kind":"Field","name":{"kind":"Name","value":"averageRating"}},{"kind":"Field","name":{"kind":"Name","value":"comments"}}]}}]}}]} as unknown as DocumentNode; -export const LoginDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"Login"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"password"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"identifier"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"login"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"password"},"value":{"kind":"Variable","name":{"kind":"Name","value":"password"}}},{"kind":"Argument","name":{"kind":"Name","value":"identifier"},"value":{"kind":"Variable","name":{"kind":"Name","value":"identifier"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; -export const RegisterDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"Register"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserRegisterInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"register"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; +export const LoginDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"Login"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"password"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"identifier"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"login"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"password"},"value":{"kind":"Variable","name":{"kind":"Name","value":"password"}}},{"kind":"Argument","name":{"kind":"Name","value":"identifier"},"value":{"kind":"Variable","name":{"kind":"Name","value":"identifier"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; +export const RegisterDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"Register"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserRegisterInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"register"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; export const LogoutDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"Logout"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"logout"}}]}}]} as unknown as DocumentNode; export const RequestPasswordResetDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RequestPasswordReset"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"identifier"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"requestPasswordReset"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"identifier"},"value":{"kind":"Variable","name":{"kind":"Name","value":"identifier"}}}]}]}}]} as unknown as DocumentNode; export const CheckPasswordResetDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CheckPasswordReset"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"token"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"checkPasswordReset"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"token"},"value":{"kind":"Variable","name":{"kind":"Name","value":"token"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}}]} as unknown as DocumentNode; export const UsePasswordResetDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UsePasswordReset"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PasswordResetUseInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"usePasswordReset"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"}}]}}]}}]} as unknown as DocumentNode; export const RequestPasswordResetForDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RequestPasswordResetFor"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"requestPasswordResetFor"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}]}]}}]} as unknown as DocumentNode; export const UpdateTranslationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateTranslation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"data"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TranslationCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateTranslation"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"data"},"value":{"kind":"Variable","name":{"kind":"Name","value":"data"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"language"}}]}}]}}]} as unknown as DocumentNode; -export const UpdateProfileDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateProfile"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateProfile"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; +export const UpdateProfileDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateProfile"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateProfile"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; export const UpdateUserDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateUser"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserUpdateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateUser"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}},{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}}]}}]}}]}}]} as unknown as DocumentNode; -export const UpdatePasswordDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdatePassword"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currentPassword"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"newPassword"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"newPasswordRepeat"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updatePassword"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currentPassword"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currentPassword"}}},{"kind":"Argument","name":{"kind":"Name","value":"newPassword"},"value":{"kind":"Variable","name":{"kind":"Name","value":"newPassword"}}},{"kind":"Argument","name":{"kind":"Name","value":"newPasswordRepeat"},"value":{"kind":"Variable","name":{"kind":"Name","value":"newPasswordRepeat"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; +export const UpdatePasswordDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdatePassword"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currentPassword"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"newPassword"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"newPasswordRepeat"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updatePassword"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currentPassword"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currentPassword"}}},{"kind":"Argument","name":{"kind":"Name","value":"newPassword"},"value":{"kind":"Variable","name":{"kind":"Name","value":"newPassword"}}},{"kind":"Argument","name":{"kind":"Name","value":"newPasswordRepeat"},"value":{"kind":"Variable","name":{"kind":"Name","value":"newPasswordRepeat"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; export const ValidateVatDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ValidateVat"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"vat"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"validateVat"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"vat"},"value":{"kind":"Variable","name":{"kind":"Name","value":"vat"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valid"}},{"kind":"Field","name":{"kind":"Name","value":"exists"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}}]}}]}}]}}]} as unknown as DocumentNode; export const CreateIndustryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateIndustry"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"name"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createIndustry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"name"},"value":{"kind":"Variable","name":{"kind":"Name","value":"name"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; export const RenameIndustryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RenameIndustry"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"oldName"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"newName"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"renameIndustry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"oldName"},"value":{"kind":"Variable","name":{"kind":"Name","value":"oldName"}}},{"kind":"Argument","name":{"kind":"Name","value":"newName"},"value":{"kind":"Variable","name":{"kind":"Name","value":"newName"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; @@ -4260,15 +4209,12 @@ export const UpdateResumeDocument = {"kind":"Document","definitions":[{"kind":"O export const CreateNewsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateNews"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NewsCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createNews"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const EditNewsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EditNews"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NewsCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"editNews"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}},{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_News"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"News"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lang"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}}]} as unknown as DocumentNode; export const DeleteNewsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteNews"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteNews"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}]}]}}]} as unknown as DocumentNode; -export const CreateGalleryImageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateGalleryImage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImageCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createGalleryImage"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}}]}}]}}]}}]} as unknown as DocumentNode; -export const EditGalleryImageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EditGalleryImage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"info"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImageCreateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"editGalleryImage"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}},{"kind":"Argument","name":{"kind":"Name","value":"info"},"value":{"kind":"Variable","name":{"kind":"Name","value":"info"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}},{"kind":"Field","name":{"kind":"Name","value":"entity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_GalleryImage"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_GalleryImage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"visible"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}}]} as unknown as DocumentNode; -export const DeleteGalleryImageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteGalleryImage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteGalleryImage"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}]}]}}]} as unknown as DocumentNode; -export const ProfileDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Profile"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"profile"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; +export const ProfileDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Profile"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"profile"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; export const TranslationsForDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TranslationsFor"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"language"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTranslationsFor"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"language"},"value":{"kind":"Variable","name":{"kind":"Name","value":"language"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]}}]} as unknown as DocumentNode; -export const InitialDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InitialData"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"language"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"profile"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}},{"kind":"Field","name":{"kind":"Name","value":"allTranslationsFor"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"language"},"value":{"kind":"Variable","name":{"kind":"Name","value":"language"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"Field","name":{"kind":"Name","value":"currentSeason"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_Season"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Season"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Season"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"startsAt"}},{"kind":"Field","name":{"kind":"Name","value":"endsAt"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"eventFrom"}},{"kind":"Field","name":{"kind":"Name","value":"eventUntil"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackFrom"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackUntil"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleFrom"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleUntil"}}]}}]} as unknown as DocumentNode; -export const PageIndexDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PageIndexData"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"language"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"partners"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"news"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"lang"},"value":{"kind":"Variable","name":{"kind":"Name","value":"language"}}},{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"take"},"value":{"kind":"IntValue","value":"3"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_News"}}]}},{"kind":"Field","name":{"kind":"Name","value":"galleryImages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"take"},"value":{"kind":"IntValue","value":"6"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_GalleryImage"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"News"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lang"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_GalleryImage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"visible"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}}]} as unknown as DocumentNode; -export const CompanyDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Company"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"vat"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"company"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"vat"},"value":{"kind":"Variable","name":{"kind":"Name","value":"vat"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_Company"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Company"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; -export const CompanyInfoDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CompanyInfo"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"companyInfo"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"rasterLogo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"program"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"booth"}},{"kind":"Field","name":{"kind":"Name","value":"talk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"location"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"workshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"notesHr"}},{"kind":"Field","name":{"kind":"Name","value":"notesEn"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"location"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"panelParticipants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"panel"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"rasterLogo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"location"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const InitialDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InitialData"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"language"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"profile"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_UserProfile"}}]}},{"kind":"Field","name":{"kind":"Name","value":"allTranslationsFor"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"language"},"value":{"kind":"Variable","name":{"kind":"Name","value":"language"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"Field","name":{"kind":"Name","value":"currentSeason"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_Season"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_UserProfile"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"User"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"roles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Season"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Season"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"startsAt"}},{"kind":"Field","name":{"kind":"Name","value":"endsAt"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"eventFrom"}},{"kind":"Field","name":{"kind":"Name","value":"eventUntil"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackFrom"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackUntil"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleFrom"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleUntil"}}]}}]} as unknown as DocumentNode; +export const PageIndexDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PageIndexData"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"language"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"partners"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"news"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"lang"},"value":{"kind":"Variable","name":{"kind":"Name","value":"language"}}},{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"take"},"value":{"kind":"IntValue","value":"3"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_News"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"News"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lang"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}}]} as unknown as DocumentNode; +export const CompanyDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Company"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"vat"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"company"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"vat"},"value":{"kind":"Variable","name":{"kind":"Name","value":"vat"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_Company"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Company"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; +export const CompanyInfoDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CompanyInfo"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"companyInfo"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"rasterLogo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"program"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"booth"}},{"kind":"Field","name":{"kind":"Name","value":"talk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"location"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"workshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"notesHr"}},{"kind":"Field","name":{"kind":"Name","value":"notesEn"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"location"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"panelParticipants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"panel"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"reservation"}},{"kind":"Field","name":{"kind":"Name","value":"companies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"rasterLogo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"location"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const IndustriesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Industries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"industries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; export const TalkCategoriesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TalkCategories"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"season"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"talkCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"forSeason"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"is"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"uid"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"equals"},"value":{"kind":"Variable","name":{"kind":"Name","value":"season"}}}]}}]}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; export const PressReleaseDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PressRelease"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pressRelease"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"published"}},{"kind":"Field","name":{"kind":"Name","value":"file"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}}]}},{"kind":"Field","name":{"kind":"Name","value":"forSeason"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode; @@ -4277,11 +4223,8 @@ export const AllNewsDocument = {"kind":"Document","definitions":[{"kind":"Operat export const NewsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"News"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"lang"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NewsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"news"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"lang"},"value":{"kind":"Variable","name":{"kind":"Name","value":"lang"}}},{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_News"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"News"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lang"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}}]} as unknown as DocumentNode; export const NewsItemDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"NewsItem"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"lang"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NewsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"newsItem"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_News"}}]}},{"kind":"Field","name":{"kind":"Name","value":"news"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"lang"},"value":{"kind":"Variable","name":{"kind":"Name","value":"lang"}}},{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_News"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"News"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lang"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}}]} as unknown as DocumentNode; export const NewsItemByUidDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"NewsItemByUid"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"newsItemByUid"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_News"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"News"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lang"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"content"}}]}}]} as unknown as DocumentNode; -export const GalleryImagesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GalleryImages"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImageFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"galleryImages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_GalleryImage"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_GalleryImage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"visible"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}}]} as unknown as DocumentNode; -export const AllGalleryImagesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AllGalleryImages"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allGalleryImages"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_GalleryImage"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_GalleryImage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"visible"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}}]} as unknown as DocumentNode; -export const GalleryImagItemByUidDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GalleryImagItemByUid"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uid"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"galleryImageItemByUid"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uid"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uid"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_GalleryImage"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_GalleryImage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GalleryImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"visible"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"thumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fullUrl"}}]}}]}}]} as unknown as DocumentNode; export const AdminInitialDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AdminInitialData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"industries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"seasons"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"endsAt"},"value":{"kind":"EnumValue","value":"desc"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_Season"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Season"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Season"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"startsAt"}},{"kind":"Field","name":{"kind":"Name","value":"endsAt"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableFrom"}},{"kind":"Field","name":{"kind":"Name","value":"applicationsEditableUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showParticipantsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showPartnersUntil"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsFrom"}},{"kind":"Field","name":{"kind":"Name","value":"showSponsorsUntil"}},{"kind":"Field","name":{"kind":"Name","value":"eventFrom"}},{"kind":"Field","name":{"kind":"Name","value":"eventUntil"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackFrom"}},{"kind":"Field","name":{"kind":"Name","value":"feedbackUntil"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleFrom"}},{"kind":"Field","name":{"kind":"Name","value":"scheduleUntil"}}]}}]} as unknown as DocumentNode; -export const AdminCompanyApplicationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AdminCompanyApplication"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"company"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"season"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"talkCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"forSeason"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"is"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"uid"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"equals"},"value":{"kind":"Variable","name":{"kind":"Name","value":"season"}}}]}}]}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"booths"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"key"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companyApplicationFor"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"company"},"value":{"kind":"Variable","name":{"kind":"Name","value":"company"}}},{"kind":"Argument","name":{"kind":"Name","value":"season"},"value":{"kind":"Variable","name":{"kind":"Name","value":"season"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_CompanyApplication"}},{"kind":"Field","name":{"kind":"Name","value":"forCompany"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_Company"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_ApplicationPresenter"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ApplicationPresenter"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_AllFeedback"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplicationFeedback"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"applicationComments"}},{"kind":"Field","name":{"kind":"Name","value":"applicationRating"}},{"kind":"Field","name":{"kind":"Name","value":"attendanceRating"}},{"kind":"Field","name":{"kind":"Name","value":"dateComments"}},{"kind":"Field","name":{"kind":"Name","value":"dateRating"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComments"}},{"kind":"Field","name":{"kind":"Name","value":"foodRating"}},{"kind":"Field","name":{"kind":"Name","value":"mostLiked"}},{"kind":"Field","name":{"kind":"Name","value":"onsiteRating"}},{"kind":"Field","name":{"kind":"Name","value":"overallComment"}},{"kind":"Field","name":{"kind":"Name","value":"overallRating"}},{"kind":"Field","name":{"kind":"Name","value":"recommended"}},{"kind":"Field","name":{"kind":"Name","value":"testimonial"}},{"kind":"Field","name":{"kind":"Name","value":"timeRating"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_CompanyApplication"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplication"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"booth"}},{"kind":"Field","name":{"kind":"Name","value":"wantsPanel"}},{"kind":"Field","name":{"kind":"Name","value":"wantsCocktail"}},{"kind":"Field","name":{"kind":"Name","value":"contactPerson"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}}]}},{"kind":"Field","name":{"kind":"Name","value":"talk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"workshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"goal"}},{"kind":"Field","name":{"kind":"Name","value":"notesEn"}},{"kind":"Field","name":{"kind":"Name","value":"notesHr"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"cocktail"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"colour"}}]}},{"kind":"Field","name":{"kind":"Name","value":"panelParticipants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approval"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cocktail"}},{"kind":"Field","name":{"kind":"Name","value":"panel"}},{"kind":"Field","name":{"kind":"Name","value":"talkParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"workshopParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"booth"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feedback"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_AllFeedback"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Company"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; +export const AdminCompanyApplicationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AdminCompanyApplication"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"company"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"season"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"talkCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"forSeason"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"is"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"uid"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"equals"},"value":{"kind":"Variable","name":{"kind":"Name","value":"season"}}}]}}]}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"booths"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"key"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companyApplicationFor"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"company"},"value":{"kind":"Variable","name":{"kind":"Name","value":"company"}}},{"kind":"Argument","name":{"kind":"Name","value":"season"},"value":{"kind":"Variable","name":{"kind":"Name","value":"season"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_CompanyApplication"}},{"kind":"Field","name":{"kind":"Name","value":"forCompany"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_Company"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_ApplicationPresenter"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ApplicationPresenter"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_AllFeedback"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplicationFeedback"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"applicationComments"}},{"kind":"Field","name":{"kind":"Name","value":"applicationRating"}},{"kind":"Field","name":{"kind":"Name","value":"attendanceRating"}},{"kind":"Field","name":{"kind":"Name","value":"dateComments"}},{"kind":"Field","name":{"kind":"Name","value":"dateRating"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComments"}},{"kind":"Field","name":{"kind":"Name","value":"foodRating"}},{"kind":"Field","name":{"kind":"Name","value":"mostLiked"}},{"kind":"Field","name":{"kind":"Name","value":"onsiteRating"}},{"kind":"Field","name":{"kind":"Name","value":"overallComment"}},{"kind":"Field","name":{"kind":"Name","value":"overallRating"}},{"kind":"Field","name":{"kind":"Name","value":"recommended"}},{"kind":"Field","name":{"kind":"Name","value":"testimonial"}},{"kind":"Field","name":{"kind":"Name","value":"timeRating"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_CompanyApplication"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplication"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"booth"}},{"kind":"Field","name":{"kind":"Name","value":"wantsPanel"}},{"kind":"Field","name":{"kind":"Name","value":"wantsCocktail"}},{"kind":"Field","name":{"kind":"Name","value":"contactPerson"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}}]}},{"kind":"Field","name":{"kind":"Name","value":"talk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"workshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"goal"}},{"kind":"Field","name":{"kind":"Name","value":"notesEn"}},{"kind":"Field","name":{"kind":"Name","value":"notesHr"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"cocktail"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"colour"}}]}},{"kind":"Field","name":{"kind":"Name","value":"panelParticipants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approval"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cocktail"}},{"kind":"Field","name":{"kind":"Name","value":"panel"}},{"kind":"Field","name":{"kind":"Name","value":"talkParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"workshopParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"booth"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feedback"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_AllFeedback"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_Company"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"vat"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"linkedIn"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; export const AdminCompanyApplicationsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AdminCompanyApplications"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"season"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"industries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"talkCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"forSeason"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"is"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"uid"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"equals"},"value":{"kind":"Variable","name":{"kind":"Name","value":"season"}}}]}}]}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"booths"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companyApplications"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"season"},"value":{"kind":"Variable","name":{"kind":"Name","value":"season"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"wantsCocktail"}},{"kind":"Field","name":{"kind":"Name","value":"wantsPanel"}},{"kind":"Field","name":{"kind":"Name","value":"booth"}},{"kind":"Field","name":{"kind":"Name","value":"talk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"workshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"titleEn"}}]}},{"kind":"Field","name":{"kind":"Name","value":"forCompany"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"brandName"}},{"kind":"Field","name":{"kind":"Name","value":"industry"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"forSeason"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}}]}}]}}]}}]} as unknown as DocumentNode; export const CurrentCompanyApplicationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CurrentCompanyApplication"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"talkCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"booths"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"key"}}]}},{"kind":"Field","name":{"kind":"Name","value":"companyApplication"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_CompanyApplication"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_ApplicationPresenter"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ApplicationPresenter"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"bioHr"}},{"kind":"Field","name":{"kind":"Name","value":"bioEn"}},{"kind":"Field","name":{"kind":"Name","value":"photo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"full"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_AllFeedback"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplicationFeedback"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"applicationComments"}},{"kind":"Field","name":{"kind":"Name","value":"applicationRating"}},{"kind":"Field","name":{"kind":"Name","value":"attendanceRating"}},{"kind":"Field","name":{"kind":"Name","value":"dateComments"}},{"kind":"Field","name":{"kind":"Name","value":"dateRating"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComments"}},{"kind":"Field","name":{"kind":"Name","value":"foodRating"}},{"kind":"Field","name":{"kind":"Name","value":"mostLiked"}},{"kind":"Field","name":{"kind":"Name","value":"onsiteRating"}},{"kind":"Field","name":{"kind":"Name","value":"overallComment"}},{"kind":"Field","name":{"kind":"Name","value":"overallRating"}},{"kind":"Field","name":{"kind":"Name","value":"recommended"}},{"kind":"Field","name":{"kind":"Name","value":"testimonial"}},{"kind":"Field","name":{"kind":"Name","value":"timeRating"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"frag_CompanyApplication"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyApplication"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"booth"}},{"kind":"Field","name":{"kind":"Name","value":"wantsPanel"}},{"kind":"Field","name":{"kind":"Name","value":"wantsCocktail"}},{"kind":"Field","name":{"kind":"Name","value":"contactPerson"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phone"}}]}},{"kind":"Field","name":{"kind":"Name","value":"talk"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"workshop"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"titleEn"}},{"kind":"Field","name":{"kind":"Name","value":"titleHr"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionEn"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionHr"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"goal"}},{"kind":"Field","name":{"kind":"Name","value":"notesEn"}},{"kind":"Field","name":{"kind":"Name","value":"notesHr"}},{"kind":"Field","name":{"kind":"Name","value":"presenters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"cocktail"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"colour"}}]}},{"kind":"Field","name":{"kind":"Name","value":"panelParticipants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_ApplicationPresenter"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approval"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cocktail"}},{"kind":"Field","name":{"kind":"Name","value":"panel"}},{"kind":"Field","name":{"kind":"Name","value":"talkParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"workshopParticipants"}},{"kind":"Field","name":{"kind":"Name","value":"booth"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feedback"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"frag_AllFeedback"}}]}}]}}]} as unknown as DocumentNode; export const MyResumeDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"MyResume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"profile"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"resume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uid"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"city"}},{"kind":"Field","name":{"kind":"Name","value":"cv"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"faculty"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"module"}},{"kind":"Field","name":{"kind":"Name","value":"specialization"}}]}},{"kind":"Field","name":{"kind":"Name","value":"interests"}},{"kind":"Field","name":{"kind":"Name","value":"technologies"}},{"kind":"Field","name":{"kind":"Name","value":"projects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"project"}},{"kind":"Field","name":{"kind":"Name","value":"position"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"until"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volunteerExperiences"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"organisation"}},{"kind":"Field","name":{"kind":"Name","value":"position"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"until"}}]}},{"kind":"Field","name":{"kind":"Name","value":"workExperiences"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"company"}},{"kind":"Field","name":{"kind":"Name","value":"position"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"until"}}]}},{"kind":"Field","name":{"kind":"Name","value":"studyYears"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"studyType"}},{"kind":"Field","name":{"kind":"Name","value":"studyYear"}}]}},{"kind":"Field","name":{"kind":"Name","value":"extraField"}}]}}]}}]}}]} as unknown as DocumentNode; diff --git a/graphql/documents/mutations.graphql b/graphql/documents/mutations.graphql index 1fd05795..a8e173d0 100644 --- a/graphql/documents/mutations.graphql +++ b/graphql/documents/mutations.graphql @@ -265,33 +265,3 @@ mutation EditNews($uid: String!, $info: NewsCreateInput!) { mutation DeleteNews($uid: String!) { deleteNews(uid: $uid) } - -mutation CreateGalleryImage($info: GalleryImageCreateInput!) { - createGalleryImage(info: $info) { - errors { - field - message - } - entity { - uid - } - } -} - -mutation EditGalleryImage($uid: String!, $info: GalleryImageCreateInput!) { - editGalleryImage(uid: $uid, info: $info) { - errors { - field - message - } - entity { - uid - ...frag_GalleryImage - } - } -} - -mutation DeleteGalleryImage($uid: String!) { - deleteGalleryImage(uid: $uid) -} - diff --git a/graphql/documents/queries.graphql b/graphql/documents/queries.graphql index c98a20bd..ecba3d17 100644 --- a/graphql/documents/queries.graphql +++ b/graphql/documents/queries.graphql @@ -39,6 +39,9 @@ fragment frag_UserProfile on User { brandName address website + instagram + facebook + linkedIn descriptionEn descriptionHr industry { @@ -143,6 +146,9 @@ fragment frag_Company on Company { address vat website + instagram + facebook + linkedIn industry { name } @@ -161,17 +167,6 @@ fragment frag_News on News { content } -fragment frag_GalleryImage on GalleryImage { - uid - name - order - visible - photo { - thumbUrl - fullUrl - } -} - query Profile { profile { ...frag_UserProfile @@ -222,10 +217,6 @@ query PageIndexData($language: String!) { news(lang: $language, filter: { take: 3 }) { ...frag_News } - - galleryImages(filter: { take: 6 }) { - ...frag_GalleryImage - } } query Company($vat: String!) { @@ -241,6 +232,9 @@ query CompanyInfo($uid: String!) { descriptionEn descriptionHr website + instagram + facebook + linkedIn rasterLogo { thumbUrl fullUrl @@ -410,40 +404,6 @@ query NewsItemByUid($uid: String!) { } } -query GalleryImages($filter: GalleryImageFilter) { - galleryImages(filter: $filter) { - ...frag_GalleryImage - } -} - -query AllGalleryImages { - allGalleryImages { - ...frag_GalleryImage - uid - photo { - uid - name - full { - mimeType - } - } - } -} - -query GalleryImagItemByUid($uid: String!) { - galleryImageItemByUid(uid: $uid) { - ...frag_GalleryImage - uid - photo { - uid - name - full { - mimeType - } - } - } -} - query AdminInitialData { industries { name diff --git a/graphql/schema.graphql b/graphql/schema.graphql index b631e88b..6d3904af 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -345,8 +345,11 @@ type Company { createdAt: DateTimeISO! descriptionEn: String! descriptionHr: String! + facebook: String industry: Industry + instagram: String legalName: String! + linkedIn: String logoHidden: Boolean! members: [User!] program: CompanyProgram @@ -601,7 +604,10 @@ input CompanyOrderByWithRelationInput { brandName: SortOrder descriptionEn: SortOrder descriptionHr: SortOrder + facebook: SortOrderInput + instagram: SortOrderInput legalName: SortOrder + linkedIn: SortOrderInput vat: SortOrder website: SortOrder } @@ -670,9 +676,12 @@ enum CompanyScalarFieldEnum { createdAt descriptionEn descriptionHr + facebook id industryId + instagram legalName + linkedIn rasterLogoId uid updatedAt @@ -728,7 +737,10 @@ input CompanyWhereInput { brandName: StringFilter descriptionEn: StringFilter descriptionHr: StringFilter + facebook: StringNullableFilter + instagram: StringNullableFilter legalName: StringFilter + linkedIn: StringNullableFilter vat: StringFilter website: StringFilter } @@ -741,7 +753,10 @@ input CompanyWhereUniqueInput { brandName: StringFilter descriptionEn: StringFilter descriptionHr: StringFilter + facebook: StringNullableFilter + instagram: StringNullableFilter legalName: StringFilter + linkedIn: StringNullableFilter vat: String website: StringFilter } @@ -756,8 +771,11 @@ input CreateCompanyInput { brandName: String! descriptionEn: String! descriptionHr: String! + facebook: String industry: String! + instagram: String legalName: String! + linkedIn: String rasterLogo: Upload vat: String! vectorLogo: Upload @@ -965,21 +983,16 @@ input FloatFilter { type GalleryImage { name: String! order: Int! - photo: Image uid: String! visible: Boolean! } input GalleryImageCreateInput { name: String! - photo: Upload + photo: Upload! visible: Boolean! } -input GalleryImageFilter { - take: Int -} - input GalleryImageWhereInput { AND: [GalleryImageWhereInput!] NOT: [GalleryImageWhereInput!] @@ -1201,7 +1214,7 @@ type Mutation { deleteCalendarItem(uid: String!): Boolean! deleteCompanyApplicationFor(company: String!, season: String!): Boolean! deleteCompanyPanel(uid: String!): Boolean! - deleteGalleryImage(uid: String!): Boolean! + deleteGalleryImage(galleryImage: String!): Boolean! deleteLiveVoteComment(commentId: Int!): Boolean! deleteNews(uid: String!): Boolean deletePartner(partner: String!): Boolean! @@ -1524,8 +1537,7 @@ type Query { currentSeason: Season eventLog(orderBy: [EventLogOrderByWithRelationInput!], page: Int!, perPage: Int!, where: String): EventLogPaginationResult! findFirstTranslation(cursor: TranslationWhereUniqueInput, distinct: [TranslationScalarFieldEnum!], orderBy: [TranslationOrderByWithRelationInput!], skip: Int, take: Int, where: TranslationWhereInput): Translation - galleryImageItemByUid(uid: String!): GalleryImage - galleryImages(filter: GalleryImageFilter): [GalleryImage!]! + galleryImages: [GalleryImage!]! gateGuardianScanList(season: String!): [GateGuardianLog!] industries(cursor: IndustryWhereUniqueInput, distinct: [IndustryScalarFieldEnum!], orderBy: [IndustryOrderByWithRelationInput!], skip: Int, take: Int, where: IndustryWhereInput): [Industry!]! liveVoteComments(seasonUid: String!): [LiveVoteComment!]! diff --git a/graphql/schema.ts b/graphql/schema.ts index 631c6254..14b0457c 100644 --- a/graphql/schema.ts +++ b/graphql/schema.ts @@ -410,8 +410,11 @@ export type ICompany = { createdAt: Scalars['DateTimeISO']['output']; descriptionEn: Scalars['String']['output']; descriptionHr: Scalars['String']['output']; + facebook?: Maybe; industry?: Maybe; + instagram?: Maybe; legalName: Scalars['String']['output']; + linkedIn?: Maybe; logoHidden: Scalars['Boolean']['output']; members?: Maybe>; program?: Maybe; @@ -706,7 +709,10 @@ export type ICompanyOrderByWithRelationInput = { brandName?: InputMaybe; descriptionEn?: InputMaybe; descriptionHr?: InputMaybe; + facebook?: InputMaybe; + instagram?: InputMaybe; legalName?: InputMaybe; + linkedIn?: InputMaybe; vat?: InputMaybe; website?: InputMaybe; }; @@ -780,9 +786,12 @@ export enum ICompanyScalarFieldEnum { CreatedAt = 'createdAt', DescriptionEn = 'descriptionEn', DescriptionHr = 'descriptionHr', + Facebook = 'facebook', Id = 'id', IndustryId = 'industryId', + Instagram = 'instagram', LegalName = 'legalName', + LinkedIn = 'linkedIn', RasterLogoId = 'rasterLogoId', Uid = 'uid', UpdatedAt = 'updatedAt', @@ -838,7 +847,10 @@ export type ICompanyWhereInput = { brandName?: InputMaybe; descriptionEn?: InputMaybe; descriptionHr?: InputMaybe; + facebook?: InputMaybe; + instagram?: InputMaybe; legalName?: InputMaybe; + linkedIn?: InputMaybe; vat?: InputMaybe; website?: InputMaybe; }; @@ -851,7 +863,10 @@ export type ICompanyWhereUniqueInput = { brandName?: InputMaybe; descriptionEn?: InputMaybe; descriptionHr?: InputMaybe; + facebook?: InputMaybe; + instagram?: InputMaybe; legalName?: InputMaybe; + linkedIn?: InputMaybe; vat?: InputMaybe; website?: InputMaybe; }; @@ -866,8 +881,11 @@ export type ICreateCompanyInput = { brandName: Scalars['String']['input']; descriptionEn: Scalars['String']['input']; descriptionHr: Scalars['String']['input']; + facebook?: InputMaybe; industry: Scalars['String']['input']; + instagram?: InputMaybe; legalName: Scalars['String']['input']; + linkedIn?: InputMaybe; rasterLogo?: InputMaybe; vat: Scalars['String']['input']; vectorLogo?: InputMaybe; @@ -1085,21 +1103,16 @@ export type IFloatFilter = { export type IGalleryImage = { name: Scalars['String']['output']; order: Scalars['Int']['output']; - photo?: Maybe; uid: Scalars['String']['output']; visible: Scalars['Boolean']['output']; }; export type IGalleryImageCreateInput = { name: Scalars['String']['input']; - photo?: InputMaybe; + photo: Scalars['Upload']['input']; visible: Scalars['Boolean']['input']; }; -export type IGalleryImageFilter = { - take?: InputMaybe; -}; - export type IGalleryImageWhereInput = { AND?: InputMaybe>; NOT?: InputMaybe>; @@ -1520,7 +1533,7 @@ export type IMutationDeleteCompanyPanelArgs = { export type IMutationDeleteGalleryImageArgs = { - uid: Scalars['String']['input']; + galleryImage: Scalars['String']['input']; }; @@ -2040,7 +2053,6 @@ export type IQuery = { currentSeason?: Maybe; eventLog: IEventLogPaginationResult; findFirstTranslation?: Maybe; - galleryImageItemByUid?: Maybe; galleryImages: Array; gateGuardianScanList?: Maybe>; industries: Array; @@ -2169,16 +2181,6 @@ export type IQueryFindFirstTranslationArgs = { }; -export type IQueryGalleryImageItemByUidArgs = { - uid: Scalars['String']['input']; -}; - - -export type IQueryGalleryImagesArgs = { - filter?: InputMaybe; -}; - - export type IQueryGateGuardianScanListArgs = { season: Scalars['String']['input']; }; @@ -3546,7 +3548,7 @@ export type ILoginMutation_login_AuthResponse_entity_User_roles_Role = { name: s export type ILoginMutation_login_AuthResponse_entity_User_companies_Company_industry_Industry = { name: string }; -export type ILoginMutation_login_AuthResponse_entity_User_companies_Company = { uid: string, vat: string, legalName: string, brandName: string, address: string, website: string, descriptionEn: string, descriptionHr: string, industry?: ILoginMutation_login_AuthResponse_entity_User_companies_Company_industry_Industry | null }; +export type ILoginMutation_login_AuthResponse_entity_User_companies_Company = { uid: string, vat: string, legalName: string, brandName: string, address: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, descriptionEn: string, descriptionHr: string, industry?: ILoginMutation_login_AuthResponse_entity_User_companies_Company_industry_Industry | null }; export type ILoginMutation_login_AuthResponse_entity_User = { uid: string, name: string, firstName: string, lastName: string, email: string, phone: string, language: string, roles: Array, companies: Array }; @@ -3912,51 +3914,6 @@ export type IDeleteNewsMutationVariables = Exact<{ export type IDeleteNewsMutation = IDeleteNewsMutation_Mutation; -export type ICreateGalleryImageMutation_createGalleryImage_CreateGalleryImageResponse_errors_FieldError = { field: string, message: string }; - -export type ICreateGalleryImageMutation_createGalleryImage_CreateGalleryImageResponse_entity_GalleryImage = { uid: string }; - -export type ICreateGalleryImageMutation_createGalleryImage_CreateGalleryImageResponse = { errors?: Array | null, entity?: ICreateGalleryImageMutation_createGalleryImage_CreateGalleryImageResponse_entity_GalleryImage | null }; - -export type ICreateGalleryImageMutation_Mutation = { createGalleryImage?: ICreateGalleryImageMutation_createGalleryImage_CreateGalleryImageResponse | null }; - - -export type ICreateGalleryImageMutationVariables = Exact<{ - info: IGalleryImageCreateInput; -}>; - - -export type ICreateGalleryImageMutation = ICreateGalleryImageMutation_Mutation; - -export type IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_errors_FieldError = { field: string, message: string }; - -export type IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_entity_GalleryImage_photo_Image = { thumbUrl: string, fullUrl: string }; - -export type IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_entity_GalleryImage = { uid: string, name: string, order: number, visible: boolean, photo?: IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_entity_GalleryImage_photo_Image | null }; - -export type IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse = { errors?: Array | null, entity?: IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_entity_GalleryImage | null }; - -export type IEditGalleryImageMutation_Mutation = { editGalleryImage?: IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse | null }; - - -export type IEditGalleryImageMutationVariables = Exact<{ - uid: Scalars['String']['input']; - info: IGalleryImageCreateInput; -}>; - - -export type IEditGalleryImageMutation = IEditGalleryImageMutation_Mutation; - -export type IDeleteGalleryImageMutation_Mutation = { deleteGalleryImage: boolean }; - - -export type IDeleteGalleryImageMutationVariables = Exact<{ - uid: Scalars['String']['input']; -}>; - - -export type IDeleteGalleryImageMutation = IDeleteGalleryImageMutation_Mutation; - export type IFrag_SeasonFragment = { uid: string, name: string, startsAt: string | Date, endsAt: string | Date, applicationsFrom: string | Date, applicationsUntil: string | Date, applicationsEditableFrom: string | Date, applicationsEditableUntil: string | Date, showParticipantsFrom: string | Date, showParticipantsUntil: string | Date, showPartnersFrom: string | Date, showPartnersUntil: string | Date, showSponsorsFrom: string | Date, showSponsorsUntil: string | Date, eventFrom: string | Date, eventUntil: string | Date, feedbackFrom: string | Date, feedbackUntil: string | Date, scheduleFrom: string | Date, scheduleUntil: string | Date }; export type IFrag_UserProfileFragment = { uid: string, name: string, firstName: string, lastName: string, email: string, phone: string, language: string, roles: Array, companies: Array }; @@ -3993,12 +3950,10 @@ export type IFrag_CompanyApplicationFragment = { booth?: string | null, wantsPan export type IFrag_CompanyFragment_Company_industry_Industry = { name: string }; -export type IFrag_CompanyFragment = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, industry?: IFrag_CompanyFragment_Company_industry_Industry | null }; +export type IFrag_CompanyFragment = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, industry?: IFrag_CompanyFragment_Company_industry_Industry | null }; export type IFrag_NewsFragment = { lang: string, slug: string, date: string | Date, title: string, description: string, content: string, photo?: IEditNewsMutation_editNews_NewsCreateResponse_entity_News_photo_Image | null }; -export type IFrag_GalleryImageFragment = { uid: string, name: string, order: number, visible: boolean, photo?: IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_entity_GalleryImage_photo_Image | null }; - export type IProfileQuery_profile_User = { uid: string, name: string, firstName: string, lastName: string, email: string, phone: string, language: string, roles: Array, companies: Array }; export type IProfileQuery_Query = { profile?: IProfileQuery_profile_User | null }; @@ -4047,9 +4002,7 @@ export type IPageIndexDataQuery_partners_Partner = { name: string, url: string, export type IPageIndexDataQuery_news_News = { lang: string, slug: string, date: string | Date, title: string, description: string, content: string, photo?: IEditNewsMutation_editNews_NewsCreateResponse_entity_News_photo_Image | null }; -export type IPageIndexDataQuery_galleryImages_GalleryImage = { uid: string, name: string, order: number, visible: boolean, photo?: IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_entity_GalleryImage_photo_Image | null }; - -export type IPageIndexDataQuery_Query = { sponsors: Array, partners: Array, news: Array, galleryImages: Array }; +export type IPageIndexDataQuery_Query = { sponsors: Array, partners: Array, news: Array }; export type IPageIndexDataQueryVariables = Exact<{ @@ -4059,7 +4012,7 @@ export type IPageIndexDataQueryVariables = Exact<{ export type IPageIndexDataQuery = IPageIndexDataQuery_Query; -export type ICompanyQuery_company_Company = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, industry?: IFrag_CompanyFragment_Company_industry_Industry | null }; +export type ICompanyQuery_company_Company = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, industry?: IFrag_CompanyFragment_Company_industry_Industry | null }; export type ICompanyQuery_Query = { company?: ICompanyQuery_company_Company | null }; @@ -4103,7 +4056,7 @@ export type ICompanyInfoQuery_companyInfo_Company_program_CompanyProgram_panel_C export type ICompanyInfoQuery_companyInfo_Company_program_CompanyProgram = { booth?: string | null, talk?: ICompanyInfoQuery_companyInfo_Company_program_CompanyProgram_talk_ApplicationTalk | null, workshop?: ICompanyInfoQuery_companyInfo_Company_program_CompanyProgram_workshop_ApplicationWorkshop | null, panelParticipants: Array, panel?: ICompanyInfoQuery_companyInfo_Company_program_CompanyProgram_panel_CompanyPanel | null }; -export type ICompanyInfoQuery_companyInfo_Company = { uid: string, brandName: string, descriptionEn: string, descriptionHr: string, website: string, rasterLogo?: ICompanyInfoQuery_companyInfo_Company_rasterLogo_Image | null, program?: ICompanyInfoQuery_companyInfo_Company_program_CompanyProgram | null }; +export type ICompanyInfoQuery_companyInfo_Company = { uid: string, brandName: string, descriptionEn: string, descriptionHr: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, rasterLogo?: ICompanyInfoQuery_companyInfo_Company_rasterLogo_Image | null, program?: ICompanyInfoQuery_companyInfo_Company_program_CompanyProgram | null }; export type ICompanyInfoQuery_Query = { companyInfo?: ICompanyInfoQuery_companyInfo_Company | null }; @@ -4226,40 +4179,6 @@ export type INewsItemByUidQueryVariables = Exact<{ export type INewsItemByUidQuery = INewsItemByUidQuery_Query; -export type IGalleryImagesQuery_galleryImages_GalleryImage = { uid: string, name: string, order: number, visible: boolean, photo?: IEditGalleryImageMutation_editGalleryImage_CreateGalleryImageResponse_entity_GalleryImage_photo_Image | null }; - -export type IGalleryImagesQuery_Query = { galleryImages: Array }; - - -export type IGalleryImagesQueryVariables = Exact<{ - filter?: InputMaybe; -}>; - - -export type IGalleryImagesQuery = IGalleryImagesQuery_Query; - -export type IAllGalleryImagesQuery_allGalleryImages_GalleryImage = { uid: string, name: string, order: number, visible: boolean, photo?: INewsItemByUidQuery_newsItemByUid_News_photo_Image | null }; - -export type IAllGalleryImagesQuery_Query = { allGalleryImages: Array }; - - -export type IAllGalleryImagesQueryVariables = Exact<{ [key: string]: never; }>; - - -export type IAllGalleryImagesQuery = IAllGalleryImagesQuery_Query; - -export type IGalleryImagItemByUidQuery_galleryImageItemByUid_GalleryImage = { uid: string, name: string, order: number, visible: boolean, photo?: INewsItemByUidQuery_newsItemByUid_News_photo_Image | null }; - -export type IGalleryImagItemByUidQuery_Query = { galleryImageItemByUid?: IGalleryImagItemByUidQuery_galleryImageItemByUid_GalleryImage | null }; - - -export type IGalleryImagItemByUidQueryVariables = Exact<{ - uid: Scalars['String']['input']; -}>; - - -export type IGalleryImagItemByUidQuery = IGalleryImagItemByUidQuery_Query; - export type IAdminInitialDataQuery_industries_Industry = { name: string }; export type IAdminInitialDataQuery_seasons_Season = { uid: string, name: string, startsAt: string | Date, endsAt: string | Date, applicationsFrom: string | Date, applicationsUntil: string | Date, applicationsEditableFrom: string | Date, applicationsEditableUntil: string | Date, showParticipantsFrom: string | Date, showParticipantsUntil: string | Date, showPartnersFrom: string | Date, showPartnersUntil: string | Date, showSponsorsFrom: string | Date, showSponsorsUntil: string | Date, eventFrom: string | Date, eventUntil: string | Date, feedbackFrom: string | Date, feedbackUntil: string | Date, scheduleFrom: string | Date, scheduleUntil: string | Date }; @@ -4276,7 +4195,7 @@ export type IAdminCompanyApplicationQuery_talkCategories_ApplicationTalkCategory export type IAdminCompanyApplicationQuery_booths_Booth = { name: string, key?: string | null }; -export type IAdminCompanyApplicationQuery_companyApplicationFor_CompanyApplication_forCompany_Company = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, industry?: IFrag_CompanyFragment_Company_industry_Industry | null }; +export type IAdminCompanyApplicationQuery_companyApplicationFor_CompanyApplication_forCompany_Company = { uid: string, legalName: string, brandName: string, descriptionEn: string, descriptionHr: string, address: string, vat: string, website: string, instagram?: string | null, facebook?: string | null, linkedIn?: string | null, industry?: IFrag_CompanyFragment_Company_industry_Industry | null }; export type IAdminCompanyApplicationQuery_companyApplicationFor_CompanyApplication = { booth?: string | null, wantsPanel: boolean, wantsCocktail: boolean, forCompany?: IAdminCompanyApplicationQuery_companyApplicationFor_CompanyApplication_forCompany_Company | null, contactPerson?: IFrag_CompanyApplicationFragment_CompanyApplication_contactPerson_CompanyApplicationContactPerson | null, talk?: IFrag_CompanyApplicationFragment_CompanyApplication_talk_ApplicationTalk | null, workshop?: IFrag_CompanyApplicationFragment_CompanyApplication_workshop_ApplicationWorkshop | null, cocktail?: IFrag_CompanyApplicationFragment_CompanyApplication_cocktail_ApplicationCocktail | null, panelParticipants: Array, approval?: IFrag_CompanyApplicationFragment_CompanyApplication_approval_CompanyApplicationApproval | null, feedback?: IFrag_CompanyApplicationFragment_CompanyApplication_feedback_CompanyApplicationFeedback | null }; @@ -5262,7 +5181,6 @@ export type IResolversTypes = { FloatFilter: IFloatFilter; GalleryImage: ResolverTypeWrapper; GalleryImageCreateInput: IGalleryImageCreateInput; - GalleryImageFilter: IGalleryImageFilter; GalleryImageWhereInput: IGalleryImageWhereInput; GateGuardianLog: ResolverTypeWrapper; GateGuardianLogListRelationFilter: IGateGuardianLogListRelationFilter; @@ -5544,7 +5462,6 @@ export type IResolversParentTypes = { FloatFilter: IFloatFilter; GalleryImage: IGalleryImage; GalleryImageCreateInput: IGalleryImageCreateInput; - GalleryImageFilter: IGalleryImageFilter; GalleryImageWhereInput: IGalleryImageWhereInput; GateGuardianLog: IGateGuardianLog; GateGuardianLogListRelationFilter: IGateGuardianLogListRelationFilter; @@ -5838,8 +5755,11 @@ export type ICompanyResolvers; descriptionEn?: Resolver; descriptionHr?: Resolver; + facebook?: Resolver, ParentType, ContextType>; industry?: Resolver, ParentType, ContextType>; + instagram?: Resolver, ParentType, ContextType>; legalName?: Resolver; + linkedIn?: Resolver, ParentType, ContextType>; logoHidden?: Resolver; members?: Resolver>, ParentType, ContextType>; program?: Resolver, ParentType, ContextType>; @@ -6079,7 +5999,6 @@ export type IFileCountResolvers = { name?: Resolver; order?: Resolver; - photo?: Resolver, ParentType, ContextType>; uid?: Resolver; visible?: Resolver; __isTypeOf?: IsTypeOfResolverFn; @@ -6195,7 +6114,7 @@ export type IMutationResolvers>; deleteCompanyApplicationFor?: Resolver>; deleteCompanyPanel?: Resolver>; - deleteGalleryImage?: Resolver>; + deleteGalleryImage?: Resolver>; deleteLiveVoteComment?: Resolver>; deleteNews?: Resolver, ParentType, ContextType, RequireFields>; deletePartner?: Resolver>; @@ -6310,8 +6229,7 @@ export type IQueryResolvers, ParentType, ContextType>; eventLog?: Resolver>; findFirstTranslation?: Resolver, ParentType, ContextType, Partial>; - galleryImageItemByUid?: Resolver, ParentType, ContextType, RequireFields>; - galleryImages?: Resolver, ParentType, ContextType, Partial>; + galleryImages?: Resolver, ParentType, ContextType>; gateGuardianScanList?: Resolver>, ParentType, ContextType, RequireFields>; industries?: Resolver, ParentType, ContextType, Partial>; liveVoteComments?: Resolver, ParentType, ContextType, RequireFields>; @@ -6759,6 +6677,9 @@ export const Frag_UserProfile = gql` brandName address website + instagram + facebook + linkedIn descriptionEn descriptionHr industry { @@ -6867,6 +6788,9 @@ export const Frag_Company = gql` address vat website + instagram + facebook + linkedIn industry { name } @@ -6886,18 +6810,6 @@ export const Frag_News = gql` content } `; -export const Frag_GalleryImage = gql` - fragment frag_GalleryImage on GalleryImage { - uid - name - order - visible - photo { - thumbUrl - fullUrl - } -} - `; export const StoreCalendarEventsAllCalendarFragment = gql` fragment StoreCalendarEventsAllCalendarFragment on CalendarItem { uid @@ -7240,38 +7152,6 @@ export const DeleteNews = gql` deleteNews(uid: $uid) } `; -export const CreateGalleryImage = gql` - mutation CreateGalleryImage($info: GalleryImageCreateInput!) { - createGalleryImage(info: $info) { - errors { - field - message - } - entity { - uid - } - } -} - `; -export const EditGalleryImage = gql` - mutation EditGalleryImage($uid: String!, $info: GalleryImageCreateInput!) { - editGalleryImage(uid: $uid, info: $info) { - errors { - field - message - } - entity { - uid - ...frag_GalleryImage - } - } -} - ${Frag_GalleryImage}`; -export const DeleteGalleryImage = gql` - mutation DeleteGalleryImage($uid: String!) { - deleteGalleryImage(uid: $uid) -} - `; export const Profile = gql` query Profile { profile { @@ -7323,12 +7203,8 @@ export const PageIndexData = gql` news(lang: $language, filter: {take: 3}) { ...frag_News } - galleryImages(filter: {take: 6}) { - ...frag_GalleryImage - } } - ${Frag_News} -${Frag_GalleryImage}`; + ${Frag_News}`; export const Company = gql` query Company($vat: String!) { company(vat: $vat) { @@ -7344,6 +7220,9 @@ export const CompanyInfo = gql` descriptionEn descriptionHr website + instagram + facebook + linkedIn rasterLogo { thumbUrl fullUrl @@ -7523,43 +7402,6 @@ export const NewsItemByUid = gql` } } ${Frag_News}`; -export const GalleryImages = gql` - query GalleryImages($filter: GalleryImageFilter) { - galleryImages(filter: $filter) { - ...frag_GalleryImage - } -} - ${Frag_GalleryImage}`; -export const AllGalleryImages = gql` - query AllGalleryImages { - allGalleryImages { - ...frag_GalleryImage - uid - photo { - uid - name - full { - mimeType - } - } - } -} - ${Frag_GalleryImage}`; -export const GalleryImagItemByUid = gql` - query GalleryImagItemByUid($uid: String!) { - galleryImageItemByUid(uid: $uid) { - ...frag_GalleryImage - uid - photo { - uid - name - full { - mimeType - } - } - } -} - ${Frag_GalleryImage}`; export const AdminInitialData = gql` query AdminInitialData { industries { diff --git a/helpers/forms/company.ts b/helpers/forms/company.ts index 51f756d3..dc1a80d0 100644 --- a/helpers/forms/company.ts +++ b/helpers/forms/company.ts @@ -24,6 +24,7 @@ type Company = Omit & { vectorLogo: Pick - & { - full: Pick, -}; - -type GalleryImage = Omit & { - photo?: Photo | null, -}; - -export const galleryImageCreate = - (galleryImage?: T | null): Record => - ({ - name: { - value: galleryImage?.name || "", - type: "text", - placeholder: "Title", - }, - photo: { - value: galleryImage?.photo?.uid ? `/api/i/${ galleryImage.photo?.uid }/full` : "", - fileName: galleryImage?.photo?.name, - fileType: galleryImage?.photo?.full?.mimeType, - accept: "image/png,image/jpeg", - type: "file", - }, - visible: { - value: galleryImage?.visible ?? false, - type: "checkbox" as const, - required: false, - }, - }); - diff --git a/pages/admin/index.vue b/pages/admin/index.vue index 16c3fac6..8ce1a607 100644 --- a/pages/admin/index.vue +++ b/pages/admin/index.vue @@ -94,13 +94,6 @@ -
- - - Uredi galeriju - - -
diff --git a/pages/admin/pr/gallery/index.vue b/pages/admin/pr/gallery/index.vue deleted file mode 100644 index 4ffef00c..00000000 --- a/pages/admin/pr/gallery/index.vue +++ /dev/null @@ -1,163 +0,0 @@ - - - - - diff --git a/pages/company/[uid]/index.vue b/pages/company/[uid]/index.vue index bbe1a9cc..965e9d19 100644 --- a/pages/company/[uid]/index.vue +++ b/pages/company/[uid]/index.vue @@ -31,20 +31,27 @@


-

- : - +

+
@@ -428,6 +435,46 @@ return info; }), false); + const globResult = import.meta.glob([ + "../../../assets/images/page/company-info/icons/socials/*.png", + ], { eager: true }) as unknown as Record; + + const socialIcons = + Object.fromEntries( + Object + .entries(globResult) + .filter(([ key ]) => key.startsWith("../../../assets/images/page/company-info/icons/socials")) + .map(([ key, value ]) => [ + key.replace(/.*\/icon-(.*)\..*?$/, "$1"), + value.default, + ]) + , + ) + ; + + const companySocials = [ + unref(company).website && { + name: "Website", + href: unref(company).website, + icon: socialIcons.web, + }, + unref(company).linkedIn && { + name: "LinkedIn", + href: unref(company).linkedIn, + icon: socialIcons.ln, + }, + unref(company).instagram && { + name: "Instagram", + href: unref(company).instagram, + icon: socialIcons.ig, + }, + unref(company).facebook && { + name: "Facebook", + href: unref(company).facebook, + icon: socialIcons.fb, + }, + ].filter(Boolean); + const signupLoading = ref(false); return { @@ -441,6 +488,7 @@ EventType, panelCompanies: computed(() => (unref(programItems)?.panel?.companies || []).filter((x) => x.uid !== unref(company).uid)), joinNowRoute: useJoinNow(), + companySocials, formatWebsite(website: string) { try { const url = new URL(website); @@ -736,4 +784,31 @@ opacity: .7; color: $fer-black; } + + .socialIconContainer { + display: flex; + gap: .875rem; + max-width: 12em; + + .socialIcon { + width: 1.3125rem; + height: 100%; + padding: 0; + transition-property: opacity; + + .socialIconLink { + width: 1.3125rem; + height: 100%; + display: block; + } + + .socialIconImg { + width: 1.3125rem; + } + + &:hover { + opacity: .8; + } + } + } diff --git a/pages/index.vue b/pages/index.vue index 75f1464f..16a0a9ae 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -83,7 +83,7 @@
@@ -97,16 +97,12 @@
-
- - - - - - -
+ + + + + +
@@ -291,8 +287,7 @@ newsStore.setNews(initialData?.news ?? []); const news = computed(() => limitLength(3)(newsStore.items)); - galleryStore.setGalleryImages(initialData?.galleryImages ?? []); - const galleryImages = computed(() => limitLength(6)(galleryStore.items)); + const gallery = computed(() => galleryStore.items); return { isLoggedIn: computed(() => userStore.isLoggedIn), @@ -302,7 +297,7 @@ partnersShown: computed(() => seasonsStore.arePartnersShown), sponsorsShown: computed(() => seasonsStore.areSponsorsShown), news, - galleryImages, + gallery, projectFriends: initialData?.sponsors ?? [], mediaPartners: initialData?.partners ?? [], joinNowRoute, diff --git a/pages/press.vue b/pages/press.vue index de5b4fed..fa47bfa3 100644 --- a/pages/press.vue +++ b/pages/press.vue @@ -110,10 +110,8 @@ - -