├── .coderabbit.yaml ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .flake8 ├── .github ├── FUNDING.yaml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── test.md ├── dependabot.yaml ├── pull_request_template.md └── workflows │ ├── README.md │ ├── auto-label.json5 │ ├── codeql-codescan.yml │ ├── issue-assigned.yml │ ├── issue-unassigned.yml │ ├── issue.yml │ ├── pull-request-review.yml │ ├── pull-request-target.yml │ ├── pull-request.yml │ ├── push-deploy-website.yml │ ├── push.yml │ ├── requirements.txt │ ├── scripts │ ├── biome_disable_check.py │ ├── check_docstrings.py │ ├── code_coverage_disable_check.py │ └── detect_ts_ignore.py │ └── stale.yml ├── .gitignore ├── .nojekyll ├── .npmrc ├── .pydocstyle ├── .swcrc ├── .vscode └── settings.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── DOCUMENTATION.md ├── INSTALLATION.md ├── ISSUE_GUIDELINES.md ├── LICENSE ├── PULL_REQUEST_GUIDELINES.md ├── README.md ├── biome.jsonc ├── compose.yaml ├── docker ├── Caddyfile ├── api.Containerfile ├── apiHealthcheck.js ├── compose.deploy.yaml ├── compose.devcontainer.yaml └── compose.testing.yaml ├── docs ├── .gitignore ├── CNAME ├── README.md ├── docs │ ├── auto-docs │ │ ├── createServer │ │ │ └── functions │ │ │ │ └── createServer.md │ │ ├── drizzle │ │ │ ├── enums │ │ │ │ ├── advertisementAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── advertisementAttachmentMimeTypeEnum.md │ │ │ │ ├── advertisementType │ │ │ │ │ └── variables │ │ │ │ │ │ └── advertisementTypeEnum.md │ │ │ │ ├── agendaItemType │ │ │ │ │ └── variables │ │ │ │ │ │ └── agendaItemTypeEnum.md │ │ │ │ ├── chatMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── chatMembershipRoleEnum.md │ │ │ │ ├── commentVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── commentVoteTypeEnum.md │ │ │ │ ├── eventAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── eventAttachmentMimeTypeEnum.md │ │ │ │ ├── familyMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── familyMembershipRoleEnum.md │ │ │ │ ├── imageMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── imageMimeTypeEnum.md │ │ │ │ ├── iso3166Alpha2CountryCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── iso3166Alpha2CountryCodeEnum.md │ │ │ │ ├── iso4217CurrencyCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── iso4217CurrencyCodeEnum.md │ │ │ │ ├── iso639Set1LanguageCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── iso639Set1LanguageCodeEnum.md │ │ │ │ ├── organizationMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── organizationMembershipRoleEnum.md │ │ │ │ ├── postAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── postAttachmentMimeTypeEnum.md │ │ │ │ ├── postVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── postVoteTypeEnum.md │ │ │ │ ├── userEducationGrade │ │ │ │ │ └── variables │ │ │ │ │ │ └── userEducationGradeEnum.md │ │ │ │ ├── userEmploymentStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── userEmploymentStatusEnum.md │ │ │ │ ├── userMaritalStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── userMaritalStatusEnum.md │ │ │ │ ├── userNatalSex │ │ │ │ │ └── variables │ │ │ │ │ │ └── userNatalSexEnum.md │ │ │ │ ├── userRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── userRoleEnum.md │ │ │ │ ├── venueAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── venueAttachmentMimeTypeEnum.md │ │ │ │ ├── videoMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── videoMimeTypeEnum.md │ │ │ │ └── volunteerGroupAssignmentInviteStatus │ │ │ │ │ └── variables │ │ │ │ │ └── volunteerGroupAssignmentInviteStatusEnum.md │ │ │ └── tables │ │ │ │ ├── actionCategories │ │ │ │ └── variables │ │ │ │ │ ├── actionCategoriesTable.md │ │ │ │ │ └── actionCategoriesTableRelations.md │ │ │ │ ├── actions │ │ │ │ └── variables │ │ │ │ │ ├── actionsTable.md │ │ │ │ │ └── actionsTableRelations.md │ │ │ │ ├── advertisementAttachments │ │ │ │ └── variables │ │ │ │ │ ├── advertisementAttachmentsTable.md │ │ │ │ │ ├── advertisementAttachmentsTableInsertSchema.md │ │ │ │ │ └── advertisementAttachmentsTableRelations.md │ │ │ │ ├── advertisements │ │ │ │ └── variables │ │ │ │ │ ├── advertisementsTable.md │ │ │ │ │ ├── advertisementsTableInsertSchema.md │ │ │ │ │ └── advertisementsTableRelations.md │ │ │ │ ├── agendaFolders │ │ │ │ └── variables │ │ │ │ │ ├── agendaFoldersTable.md │ │ │ │ │ ├── agendaFoldersTableInsertSchema.md │ │ │ │ │ └── agendaFoldersTableRelations.md │ │ │ │ ├── agendaItems │ │ │ │ └── variables │ │ │ │ │ ├── agendaItemsTable.md │ │ │ │ │ ├── agendaItemsTableInsertSchema.md │ │ │ │ │ └── agendaItemsTableRelations.md │ │ │ │ ├── chatMemberships │ │ │ │ └── variables │ │ │ │ │ ├── chatMembershipsTable.md │ │ │ │ │ ├── chatMembershipsTableInsertSchema.md │ │ │ │ │ └── chatMembershipsTableRelations.md │ │ │ │ ├── chatMessages │ │ │ │ └── variables │ │ │ │ │ ├── chatMessagesTable.md │ │ │ │ │ ├── chatMessagesTableInsertSchema.md │ │ │ │ │ └── chatMessagesTableRelations.md │ │ │ │ ├── chats │ │ │ │ └── variables │ │ │ │ │ ├── chatsTable.md │ │ │ │ │ ├── chatsTableInsertSchema.md │ │ │ │ │ └── chatsTableRelations.md │ │ │ │ ├── commentVotes │ │ │ │ └── variables │ │ │ │ │ ├── commentVotesTable.md │ │ │ │ │ ├── commentVotesTableInsertSchema.md │ │ │ │ │ └── commentVotesTableRelations.md │ │ │ │ ├── comments │ │ │ │ └── variables │ │ │ │ │ ├── commentsTable.md │ │ │ │ │ ├── commentsTableInsertSchema.md │ │ │ │ │ └── commentsTableRelations.md │ │ │ │ ├── communities │ │ │ │ └── variables │ │ │ │ │ ├── communitiesTable.md │ │ │ │ │ ├── communitiesTableInsertSchema.md │ │ │ │ │ └── communitiesTableRelations.md │ │ │ │ ├── eventAttachments │ │ │ │ └── variables │ │ │ │ │ ├── eventAttachmentsTable.md │ │ │ │ │ ├── eventAttachmentsTableInsertSchema.md │ │ │ │ │ └── eventAttachmentsTableRelations.md │ │ │ │ ├── eventAttendances │ │ │ │ └── variables │ │ │ │ │ ├── eventAttendancesTable.md │ │ │ │ │ └── eventAttendancesTableRelations.md │ │ │ │ ├── events │ │ │ │ └── variables │ │ │ │ │ ├── eventsTable.md │ │ │ │ │ ├── eventsTableInsertSchema.md │ │ │ │ │ └── eventsTableRelations.md │ │ │ │ ├── families │ │ │ │ └── variables │ │ │ │ │ ├── familiesTable.md │ │ │ │ │ └── familiesTableRelations.md │ │ │ │ ├── familyMemberships │ │ │ │ └── variables │ │ │ │ │ ├── familyMembershipsTable.md │ │ │ │ │ └── familyMembershipsTableRelations.md │ │ │ │ ├── fundCampaignPledges │ │ │ │ └── variables │ │ │ │ │ ├── fundCampaignPledgesTable.md │ │ │ │ │ ├── fundCampaignPledgesTableInsertSchema.md │ │ │ │ │ └── fundCampaignPledgesTableRelations.md │ │ │ │ ├── fundCampaigns │ │ │ │ └── variables │ │ │ │ │ ├── fundCampaignsTable.md │ │ │ │ │ ├── fundCampaignsTableInsertSchema.md │ │ │ │ │ └── fundCampaignsTableRelations.md │ │ │ │ ├── funds │ │ │ │ └── variables │ │ │ │ │ ├── fundsTable.md │ │ │ │ │ ├── fundsTableInsertSchema.md │ │ │ │ │ └── fundsTableRelations.md │ │ │ │ ├── organizationMemberships │ │ │ │ └── variables │ │ │ │ │ ├── organizationMembershipsTable.md │ │ │ │ │ ├── organizationMembershipsTableInsertSchema.md │ │ │ │ │ └── organizationMembershipsTableRelations.md │ │ │ │ ├── organizations │ │ │ │ └── variables │ │ │ │ │ ├── organizationsTable.md │ │ │ │ │ ├── organizationsTableInsertSchema.md │ │ │ │ │ └── organizationsTableRelations.md │ │ │ │ ├── postAttachments │ │ │ │ └── variables │ │ │ │ │ ├── postAttachmentsTable.md │ │ │ │ │ ├── postAttachmentsTableInsertSchema.md │ │ │ │ │ └── postAttachmentsTableRelations.md │ │ │ │ ├── postVotes │ │ │ │ └── variables │ │ │ │ │ ├── postVotesTable.md │ │ │ │ │ ├── postVotesTableInsertSchema.md │ │ │ │ │ └── postVotesTableRelations.md │ │ │ │ ├── posts │ │ │ │ └── variables │ │ │ │ │ ├── postsTable.md │ │ │ │ │ ├── postsTableInsertSchema.md │ │ │ │ │ └── postsTableRelations.md │ │ │ │ ├── tagAssignments │ │ │ │ └── variables │ │ │ │ │ ├── tagAssignmentsTable.md │ │ │ │ │ ├── tagAssignmentsTableInsertSchema.md │ │ │ │ │ └── tagAssignmentsTableRelations.md │ │ │ │ ├── tagFolders │ │ │ │ └── variables │ │ │ │ │ ├── tagFoldersTable.md │ │ │ │ │ ├── tagFoldersTableInsertSchema.md │ │ │ │ │ └── tagFoldersTableRelations.md │ │ │ │ ├── users │ │ │ │ └── variables │ │ │ │ │ ├── usersTable.md │ │ │ │ │ ├── usersTableInsertSchema.md │ │ │ │ │ └── usersTableRelations.md │ │ │ │ ├── venueAttachments │ │ │ │ └── variables │ │ │ │ │ ├── venueAttachmentsTable.md │ │ │ │ │ ├── venueAttachmentsTableInsertSchema.md │ │ │ │ │ └── venueAttachmentsTableRelations.md │ │ │ │ ├── venueBookings │ │ │ │ └── variables │ │ │ │ │ ├── venueBookingsTable.md │ │ │ │ │ ├── venueBookingsTableInsertSchema.md │ │ │ │ │ └── venueBookingsTableRelations.md │ │ │ │ ├── venues │ │ │ │ └── variables │ │ │ │ │ ├── venuesTable.md │ │ │ │ │ ├── venuesTableInsertSchema.md │ │ │ │ │ └── venuesTableRelations.md │ │ │ │ ├── volunteerGroupAssignments │ │ │ │ └── variables │ │ │ │ │ ├── volunteerGroupAssignmentsTable.md │ │ │ │ │ └── volunteerGroupAssignmentsTableRelations.md │ │ │ │ └── volunteerGroups │ │ │ │ └── variables │ │ │ │ ├── volunteerGroupsTable.md │ │ │ │ └── volunteerGroupsTableRelations.md │ │ ├── envConfigSchema │ │ │ ├── type-aliases │ │ │ │ └── EnvConfig.md │ │ │ └── variables │ │ │ │ ├── envConfigSchema.md │ │ │ │ └── envSchemaAjv.md │ │ ├── graphql │ │ │ ├── builder │ │ │ │ └── variables │ │ │ │ │ └── builder.md │ │ │ ├── context │ │ │ │ └── type-aliases │ │ │ │ │ ├── CurrentClient.md │ │ │ │ │ ├── ExplicitAuthenticationTokenPayload.md │ │ │ │ │ ├── ExplicitGraphQLContext.md │ │ │ │ │ ├── GraphQLContext.md │ │ │ │ │ └── ImplicitMercuriusContext.md │ │ │ ├── enums │ │ │ │ ├── AdvertisementType │ │ │ │ │ └── variables │ │ │ │ │ │ └── AdvertisementType.md │ │ │ │ ├── AgendaItemType │ │ │ │ │ └── variables │ │ │ │ │ │ └── AgendaItemType.md │ │ │ │ ├── ChatMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── ChatMembershipRole.md │ │ │ │ ├── CommentVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── CommentVoteType.md │ │ │ │ ├── Iso3166Alpha2CountryCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── Iso3166Alpha2CountryCode.md │ │ │ │ ├── Iso4217CurrencyCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── Iso4217CurrencyCode.md │ │ │ │ ├── Iso639Set1LanguageCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── Iso639Set1LanguageCode.md │ │ │ │ ├── OrganizationMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── OrganizationMembershipRole.md │ │ │ │ ├── PostVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── PostVoteType.md │ │ │ │ ├── UserEducationGrade │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserEducationGrade.md │ │ │ │ ├── UserEmploymentStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserEmploymentStatus.md │ │ │ │ ├── UserMaritalStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserMaritalStatus.md │ │ │ │ ├── UserNatalSex │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserNatalSex.md │ │ │ │ └── UserRole │ │ │ │ │ └── variables │ │ │ │ │ └── UserRole.md │ │ │ ├── inputs │ │ │ │ ├── MutationCreateAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateAdvertisementInput.md │ │ │ │ │ │ └── mutationCreateAdvertisementInputSchema.md │ │ │ │ ├── MutationCreateAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateAgendaFolderInput.md │ │ │ │ │ │ └── mutationCreateAgendaFolderInputSchema.md │ │ │ │ ├── MutationCreateAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateAgendaItemInput.md │ │ │ │ │ │ └── mutationCreateAgendaItemInputSchema.md │ │ │ │ ├── MutationCreateChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateChatInput.md │ │ │ │ │ │ └── mutationCreateChatInputSchema.md │ │ │ │ ├── MutationCreateChatMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateChatMembershipInput.md │ │ │ │ │ │ └── mutationCreateChatMembershipInputSchema.md │ │ │ │ ├── MutationCreateChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateChatMessageInput.md │ │ │ │ │ │ └── mutationCreateChatMessageInputSchema.md │ │ │ │ ├── MutationCreateCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateCommentInput.md │ │ │ │ │ │ └── mutationCreateCommentInputSchema.md │ │ │ │ ├── MutationCreateCommentVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateCommentVoteInput.md │ │ │ │ │ │ └── mutationCreateCommentVoteInputSchema.md │ │ │ │ ├── MutationCreateEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateEventInput.md │ │ │ │ │ │ └── mutationCreateEventInputSchema.md │ │ │ │ ├── MutationCreateFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateFundCampaignInput.md │ │ │ │ │ │ └── mutationCreateFundCampaignInputSchema.md │ │ │ │ ├── MutationCreateFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateFundCampaignPledgeInput.md │ │ │ │ │ │ └── mutationCreateFundCampaignPledgeInputSchema.md │ │ │ │ ├── MutationCreateFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateFundInput.md │ │ │ │ │ │ └── mutationCreateFundInputSchema.md │ │ │ │ ├── MutationCreateOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateOrganizationInput.md │ │ │ │ │ │ └── mutationCreateOrganizationInputSchema.md │ │ │ │ ├── MutationCreateOrganizationMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateOrganizationMembershipInput.md │ │ │ │ │ │ └── mutationCreateOrganizationMembershipInputSchema.md │ │ │ │ ├── MutationCreatePostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreatePostInput.md │ │ │ │ │ │ └── mutationCreatePostInputSchema.md │ │ │ │ ├── MutationCreatePostVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreatePostVoteInput.md │ │ │ │ │ │ └── mutationCreatePostVoteInputSchema.md │ │ │ │ ├── MutationCreateTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateTagFolderInput.md │ │ │ │ │ │ └── mutationCreateTagFolderInputSchema.md │ │ │ │ ├── MutationCreateTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateTagInput.md │ │ │ │ │ │ └── mutationCreateTagInputSchema.md │ │ │ │ ├── MutationCreateUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateUserInput.md │ │ │ │ │ │ └── mutationCreateUserInputSchema.md │ │ │ │ ├── MutationCreateVenueBookingInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateVenueBookingInput.md │ │ │ │ │ │ └── mutationCreateVenueBookingInputSchema.md │ │ │ │ ├── MutationCreateVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateVenueInput.md │ │ │ │ │ │ └── mutationCreateVenueInputSchema.md │ │ │ │ ├── MutationDeleteAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteAdvertisementInput.md │ │ │ │ │ │ └── mutationDeleteAdvertisementInputSchema.md │ │ │ │ ├── MutationDeleteAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteAgendaFolderInput.md │ │ │ │ │ │ └── mutationDeleteAgendaFolderInputSchema.md │ │ │ │ ├── MutationDeleteAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteAgendaItemInput.md │ │ │ │ │ │ └── mutationDeleteAgendaItemInputSchema.md │ │ │ │ ├── MutationDeleteChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteChatInput.md │ │ │ │ │ │ └── mutationDeleteChatInputSchema.md │ │ │ │ ├── MutationDeleteChatMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteChatMembershipInput.md │ │ │ │ │ │ └── mutationDeleteChatMembershipInputSchema.md │ │ │ │ ├── MutationDeleteChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteChatMessageInput.md │ │ │ │ │ │ └── mutationDeleteChatMessageInputSchema.md │ │ │ │ ├── MutationDeleteCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteCommentInput.md │ │ │ │ │ │ └── mutationDeleteCommentInputSchema.md │ │ │ │ ├── MutationDeleteCommentVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteCommentVoteInput.md │ │ │ │ │ │ └── mutationDeleteCommentVoteInputSchema.md │ │ │ │ ├── MutationDeleteEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteEventInput.md │ │ │ │ │ │ └── mutationDeleteEventInputSchema.md │ │ │ │ ├── MutationDeleteFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteFundCampaignInput.md │ │ │ │ │ │ └── mutationDeleteFundCampaignInputSchema.md │ │ │ │ ├── MutationDeleteFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteFundCampaignPledgeInput.md │ │ │ │ │ │ └── mutationDeleteFundCampaignPledgeInputSchema.md │ │ │ │ ├── MutationDeleteFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteFundInput.md │ │ │ │ │ │ └── mutationDeleteFundInputSchema.md │ │ │ │ ├── MutationDeleteOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteOrganizationInput.md │ │ │ │ │ │ └── mutationDeleteOrganizationInputSchema.md │ │ │ │ ├── MutationDeleteOrganizationMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteOrganizationMembershipInput.md │ │ │ │ │ │ └── mutationDeleteOrganizationMembershipInputSchema.md │ │ │ │ ├── MutationDeletePostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeletePostInput.md │ │ │ │ │ │ └── mutationDeletePostInputSchema.md │ │ │ │ ├── MutationDeletePostVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeletePostVoteInput.md │ │ │ │ │ │ └── mutationDeletePostVoteInputSchema.md │ │ │ │ ├── MutationDeleteTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteTagFolderInput.md │ │ │ │ │ │ └── mutationDeleteTagFolderInputSchema.md │ │ │ │ ├── MutationDeleteTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteTagInput.md │ │ │ │ │ │ └── mutationDeleteTagInputSchema.md │ │ │ │ ├── MutationDeleteUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteUserInput.md │ │ │ │ │ │ └── mutationDeleteUserInputSchema.md │ │ │ │ ├── MutationDeleteVenueBookingInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteVenueBookingInput.md │ │ │ │ │ │ └── mutationDeleteVenueBookingInputSchema.md │ │ │ │ ├── MutationDeleteVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteVenueInput.md │ │ │ │ │ │ └── mutationDeleteVenueInputSchema.md │ │ │ │ ├── MutationSignUpInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationSignUpInput.md │ │ │ │ │ │ └── mutationSignUpInputSchema.md │ │ │ │ ├── MutationUpdateAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateAdvertisementInput.md │ │ │ │ │ │ └── mutationUpdateAdvertisementInputSchema.md │ │ │ │ ├── MutationUpdateAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateAgendaFolderInput.md │ │ │ │ │ │ └── mutationUpdateAgendaFolderInputSchema.md │ │ │ │ ├── MutationUpdateAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateAgendaItemInput.md │ │ │ │ │ │ └── mutationUpdateAgendaItemInputSchema.md │ │ │ │ ├── MutationUpdateChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateChatInput.md │ │ │ │ │ │ └── mutationUpdateChatInputSchema.md │ │ │ │ ├── MutationUpdateChatMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateChatMembershipInput.md │ │ │ │ │ │ └── mutationUpdateChatMembershipInputSchema.md │ │ │ │ ├── MutationUpdateChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateChatMessageInput.md │ │ │ │ │ │ └── mutationUpdateChatMessageInputSchema.md │ │ │ │ ├── MutationUpdateCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCommentInput.md │ │ │ │ │ │ └── mutationUpdateCommentInputSchema.md │ │ │ │ ├── MutationUpdateCommentVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCommentVoteInput.md │ │ │ │ │ │ └── mutationUpdateCommentVoteInputSchema.md │ │ │ │ ├── MutationUpdateCommunityInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCommunityInput.md │ │ │ │ │ │ └── mutationUpdateCommunityInputSchema.md │ │ │ │ ├── MutationUpdateCurrentUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCurrentUserInput.md │ │ │ │ │ │ └── mutationUpdateCurrentUserInputSchema.md │ │ │ │ ├── MutationUpdateEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateEventInput.md │ │ │ │ │ │ └── mutationUpdateEventInputSchema.md │ │ │ │ ├── MutationUpdateFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateFundCampaignInput.md │ │ │ │ │ │ └── mutationUpdateFundCampaignInputSchema.md │ │ │ │ ├── MutationUpdateFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateFundCampaignPledgeInput.md │ │ │ │ │ │ └── mutationUpdateFundCampaignPledgeInputSchema.md │ │ │ │ ├── MutationUpdateFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateFundInput.md │ │ │ │ │ │ └── mutationUpdateFundInputSchema.md │ │ │ │ ├── MutationUpdateOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateOrganizationInput.md │ │ │ │ │ │ └── mutationUpdateOrganizationInputSchema.md │ │ │ │ ├── MutationUpdateOrganizationMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateOrganizationMembershipInput.md │ │ │ │ │ │ └── mutationUpdateOrganizationMembershipInputSchema.md │ │ │ │ ├── MutationUpdatePostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdatePostInput.md │ │ │ │ │ │ └── mutationUpdatePostInputSchema.md │ │ │ │ ├── MutationUpdatePostVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdatePostVoteInput.md │ │ │ │ │ │ └── mutationUpdatePostVoteInputSchema.md │ │ │ │ ├── MutationUpdateTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateTagFolderInput.md │ │ │ │ │ │ └── mutationUpdateTagFolderInputSchema.md │ │ │ │ ├── MutationUpdateTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateTagInput.md │ │ │ │ │ │ └── mutationUpdateTagInputSchema.md │ │ │ │ ├── MutationUpdateUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateUserInput.md │ │ │ │ │ │ └── mutationUpdateUserInputSchema.md │ │ │ │ ├── MutationUpdateVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateVenueInput.md │ │ │ │ │ │ └── mutationUpdateVenueInputSchema.md │ │ │ │ ├── QueryAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryAdvertisementInput.md │ │ │ │ │ │ └── queryAdvertisementInputSchema.md │ │ │ │ ├── QueryAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryAgendaFolderInput.md │ │ │ │ │ │ └── queryAgendaFolderInputSchema.md │ │ │ │ ├── QueryAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryAgendaItemInput.md │ │ │ │ │ │ └── queryAgendaItemInputSchema.md │ │ │ │ ├── QueryChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryChatInput.md │ │ │ │ │ │ └── queryChatInputSchema.md │ │ │ │ ├── QueryChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryChatMessageInput.md │ │ │ │ │ │ └── queryChatMessageInputSchema.md │ │ │ │ ├── QueryCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryCommentInput.md │ │ │ │ │ │ └── queryCommentInputSchema.md │ │ │ │ ├── QueryEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryEventInput.md │ │ │ │ │ │ └── queryEventInputSchema.md │ │ │ │ ├── QueryFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryFundCampaignInput.md │ │ │ │ │ │ └── queryFundCampaignInputSchema.md │ │ │ │ ├── QueryFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryFundCampaignPledgeInput.md │ │ │ │ │ │ └── queryFundCampaignPledgeInputSchema.md │ │ │ │ ├── QueryFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryFundInput.md │ │ │ │ │ │ └── queryFundInputSchema.md │ │ │ │ ├── QueryOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryOrganizationInput.md │ │ │ │ │ │ └── queryOrganizationInputSchema.md │ │ │ │ ├── QueryPostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryPostInput.md │ │ │ │ │ │ └── queryPostInputSchema.md │ │ │ │ ├── QuerySignInInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QuerySignInInput.md │ │ │ │ │ │ └── querySignInInputSchema.md │ │ │ │ ├── QueryTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryTagFolderInput.md │ │ │ │ │ │ └── queryTagFolderInputSchema.md │ │ │ │ ├── QueryTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryTagInput.md │ │ │ │ │ │ └── queryTagInputSchema.md │ │ │ │ ├── QueryUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryUserInput.md │ │ │ │ │ │ └── queryUserInputSchema.md │ │ │ │ ├── QueryVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryVenueInput.md │ │ │ │ │ │ └── queryVenueInputSchema.md │ │ │ │ └── SubscriptionChatMessageCreateInput │ │ │ │ │ └── variables │ │ │ │ │ ├── SubscriptionChatMessageCreateInput.md │ │ │ │ │ └── subscriptionChatMessageCreateInputSchema.md │ │ │ ├── pubsub │ │ │ │ └── type-aliases │ │ │ │ │ ├── PubSub.md │ │ │ │ │ └── PubSubPublishArgsByKey.md │ │ │ ├── scalars │ │ │ │ ├── BigInt │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── BigInt.md │ │ │ │ ├── Date │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── Date.md │ │ │ │ ├── DateTime │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── DateTime.md │ │ │ │ ├── PhoneNumber │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── PhoneNumber.md │ │ │ │ ├── Upload │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── Upload.md │ │ │ │ └── type-aliases │ │ │ │ │ ├── ClientCustomScalars.md │ │ │ │ │ └── CustomScalars.md │ │ │ ├── schema │ │ │ │ └── variables │ │ │ │ │ └── schema.md │ │ │ └── types │ │ │ │ ├── Advertisement │ │ │ │ └── Advertisement │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Advertisement.md │ │ │ │ │ └── variables │ │ │ │ │ └── Advertisement.md │ │ │ │ ├── AdvertisementAttachment │ │ │ │ └── AdvertisementAttachment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── AdvertisementAttachment.md │ │ │ │ │ └── variables │ │ │ │ │ └── AdvertisementAttachment.md │ │ │ │ ├── AgendaFolder │ │ │ │ └── AgendaFolder │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── AgendaFolder.md │ │ │ │ │ └── variables │ │ │ │ │ └── AgendaFolder.md │ │ │ │ ├── AgendaItem │ │ │ │ └── AgendaItem │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── AgendaItem.md │ │ │ │ │ └── variables │ │ │ │ │ └── AgendaItem.md │ │ │ │ ├── AuthenticationPayload │ │ │ │ ├── type-aliases │ │ │ │ │ └── AuthenticationPayload.md │ │ │ │ └── variables │ │ │ │ │ └── AuthenticationPayload.md │ │ │ │ ├── Chat │ │ │ │ └── Chat │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Chat.md │ │ │ │ │ └── variables │ │ │ │ │ └── Chat.md │ │ │ │ ├── ChatMessage │ │ │ │ └── ChatMessage │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── ChatMessage.md │ │ │ │ │ └── variables │ │ │ │ │ └── ChatMessage.md │ │ │ │ ├── Comment │ │ │ │ └── Comment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Comment.md │ │ │ │ │ └── variables │ │ │ │ │ └── Comment.md │ │ │ │ ├── Community │ │ │ │ └── Community │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Community.md │ │ │ │ │ └── variables │ │ │ │ │ └── Community.md │ │ │ │ ├── Event │ │ │ │ └── Event │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Event.md │ │ │ │ │ └── variables │ │ │ │ │ └── Event.md │ │ │ │ ├── EventAttachment │ │ │ │ └── EventAttachment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── EventAttachment.md │ │ │ │ │ └── variables │ │ │ │ │ └── EventAttachment.md │ │ │ │ ├── Fund │ │ │ │ └── Fund │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Fund.md │ │ │ │ │ └── variables │ │ │ │ │ └── Fund.md │ │ │ │ ├── FundCampaign │ │ │ │ └── FundCampaign │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── FundCampaign.md │ │ │ │ │ └── variables │ │ │ │ │ └── FundCampaign.md │ │ │ │ ├── FundCampaignPledge │ │ │ │ └── FundCampaignPledge │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── FundCampaignPledge.md │ │ │ │ │ └── variables │ │ │ │ │ └── FundCampaignPledge.md │ │ │ │ ├── Organization │ │ │ │ └── Organization │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Organization.md │ │ │ │ │ └── variables │ │ │ │ │ └── Organization.md │ │ │ │ ├── Post │ │ │ │ └── Post │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Post.md │ │ │ │ │ └── variables │ │ │ │ │ └── Post.md │ │ │ │ ├── PostAttachment │ │ │ │ └── PostAttachment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── PostAttachment.md │ │ │ │ │ └── variables │ │ │ │ │ └── PostAttachment.md │ │ │ │ ├── Tag │ │ │ │ └── Tag │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Tag.md │ │ │ │ │ └── variables │ │ │ │ │ └── Tag.md │ │ │ │ ├── TagFolder │ │ │ │ └── TagFolder │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── TagFolder.md │ │ │ │ │ └── variables │ │ │ │ │ └── TagFolder.md │ │ │ │ ├── User │ │ │ │ └── User │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── User.md │ │ │ │ │ └── variables │ │ │ │ │ └── User.md │ │ │ │ ├── Venue │ │ │ │ └── Venue │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Venue.md │ │ │ │ │ └── variables │ │ │ │ │ └── Venue.md │ │ │ │ └── VenueAttachment │ │ │ │ └── VenueAttachment │ │ │ │ ├── type-aliases │ │ │ │ └── VenueAttachment.md │ │ │ │ └── variables │ │ │ │ └── VenueAttachment.md │ │ ├── plugins │ │ │ ├── drizzleClient │ │ │ │ └── functions │ │ │ │ │ └── drizzleClient.md │ │ │ ├── functions │ │ │ │ └── plugins.md │ │ │ ├── minioClient │ │ │ │ └── functions │ │ │ │ │ └── minioClient.md │ │ │ └── seedInitialData │ │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── routes │ │ │ ├── functions │ │ │ │ └── routes.md │ │ │ ├── graphql │ │ │ │ ├── functions │ │ │ │ │ ├── createContext.md │ │ │ │ │ └── graphql.md │ │ │ │ └── type-aliases │ │ │ │ │ └── CreateContext.md │ │ │ ├── healthcheck │ │ │ │ └── functions │ │ │ │ │ └── healthcheck.md │ │ │ └── objects │ │ │ │ └── functions │ │ │ │ └── objects.md │ │ └── utilities │ │ │ ├── TalawaGraphQLError │ │ │ ├── classes │ │ │ │ └── TalawaGraphQLError.md │ │ │ ├── type-aliases │ │ │ │ ├── ArgumentsAssociatedResourcesNotFoundExtensions.md │ │ │ │ ├── ForbiddenActionExtensions.md │ │ │ │ ├── ForbiddenActionOnArgumentsAssociatedResourcesExtensions.md │ │ │ │ ├── InvalidArgumentsExtensions.md │ │ │ │ ├── TalawaGraphQLErrorExtensions.md │ │ │ │ ├── TalawaGraphQLFormattedError.md │ │ │ │ ├── UnauthenticatedExtensions.md │ │ │ │ ├── UnauthorizedActionExtensions.md │ │ │ │ ├── UnauthorizedActionOnArgumentsAssociatedResourcesExtensions.md │ │ │ │ ├── UnauthorizedArgumentsExtensions.md │ │ │ │ └── UnexpectedExtensions.md │ │ │ └── variables │ │ │ │ └── defaultTalawaGraphQLErrorMessages.md │ │ │ ├── defaultGraphQLConnection │ │ │ ├── functions │ │ │ │ ├── transformDefaultGraphQLConnectionArguments.md │ │ │ │ └── transformToDefaultGraphQLConnection.md │ │ │ ├── type-aliases │ │ │ │ ├── DefaultGraphQLConnection.md │ │ │ │ ├── DefaultGraphQLConnectionEdge.md │ │ │ │ ├── DefaultGraphQLConnectionPageInfo.md │ │ │ │ └── ParsedDefaultGraphQLConnectionArguments.md │ │ │ └── variables │ │ │ │ └── defaultGraphQLConnectionArgumentsSchema.md │ │ │ ├── getKeyPathsWithNonUndefinedValues │ │ │ └── functions │ │ │ │ └── getKeyPathsWithNonUndefinedValues.md │ │ │ └── isNotNullish │ │ │ └── functions │ │ │ └── isNotNullish.md │ └── docs │ │ ├── auto-schema │ │ ├── createServer │ │ │ └── functions │ │ │ │ └── createServer.md │ │ ├── drizzle │ │ │ ├── enums │ │ │ │ ├── advertisementAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── advertisementAttachmentMimeTypeEnum.md │ │ │ │ ├── advertisementType │ │ │ │ │ └── variables │ │ │ │ │ │ └── advertisementTypeEnum.md │ │ │ │ ├── agendaItemType │ │ │ │ │ └── variables │ │ │ │ │ │ └── agendaItemTypeEnum.md │ │ │ │ ├── chatMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── chatMembershipRoleEnum.md │ │ │ │ ├── commentVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── commentVoteTypeEnum.md │ │ │ │ ├── eventAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── eventAttachmentMimeTypeEnum.md │ │ │ │ ├── familyMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── familyMembershipRoleEnum.md │ │ │ │ ├── imageMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── imageMimeTypeEnum.md │ │ │ │ ├── iso3166Alpha2CountryCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── iso3166Alpha2CountryCodeEnum.md │ │ │ │ ├── iso4217CurrencyCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── iso4217CurrencyCodeEnum.md │ │ │ │ ├── iso639Set1LanguageCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── iso639Set1LanguageCodeEnum.md │ │ │ │ ├── membershipRequestStatus │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MembershipRequestStatusEnum.md │ │ │ │ │ │ └── MembershipRequestStatusValues.md │ │ │ │ ├── organizationMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── organizationMembershipRoleEnum.md │ │ │ │ ├── postAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ ├── graphqlMimeTypeEnum.md │ │ │ │ │ │ ├── mimeTypeMapping.md │ │ │ │ │ │ └── postAttachmentMimeTypeEnum.md │ │ │ │ ├── postVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── postVoteTypeEnum.md │ │ │ │ ├── userEducationGrade │ │ │ │ │ └── variables │ │ │ │ │ │ └── userEducationGradeEnum.md │ │ │ │ ├── userEmploymentStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── userEmploymentStatusEnum.md │ │ │ │ ├── userMaritalStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── userMaritalStatusEnum.md │ │ │ │ ├── userNatalSex │ │ │ │ │ └── variables │ │ │ │ │ │ └── userNatalSexEnum.md │ │ │ │ ├── userRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── userRoleEnum.md │ │ │ │ ├── venueAttachmentMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── venueAttachmentMimeTypeEnum.md │ │ │ │ ├── videoMimeType │ │ │ │ │ └── variables │ │ │ │ │ │ └── videoMimeTypeEnum.md │ │ │ │ └── volunteerGroupAssignmentInviteStatus │ │ │ │ │ └── variables │ │ │ │ │ └── volunteerGroupAssignmentInviteStatusEnum.md │ │ │ └── tables │ │ │ │ ├── actionCategories │ │ │ │ └── variables │ │ │ │ │ ├── actionCategoriesTable.md │ │ │ │ │ └── actionCategoriesTableRelations.md │ │ │ │ ├── actions │ │ │ │ └── variables │ │ │ │ │ ├── actionsTable.md │ │ │ │ │ ├── actionsTableInsertSchema.md │ │ │ │ │ └── actionsTableRelations.md │ │ │ │ ├── advertisementAttachments │ │ │ │ └── variables │ │ │ │ │ ├── advertisementAttachmentsTable.md │ │ │ │ │ ├── advertisementAttachmentsTableInsertSchema.md │ │ │ │ │ └── advertisementAttachmentsTableRelations.md │ │ │ │ ├── advertisements │ │ │ │ └── variables │ │ │ │ │ ├── advertisementsTable.md │ │ │ │ │ ├── advertisementsTableInsertSchema.md │ │ │ │ │ └── advertisementsTableRelations.md │ │ │ │ ├── agendaFolders │ │ │ │ └── variables │ │ │ │ │ ├── agendaFoldersTable.md │ │ │ │ │ ├── agendaFoldersTableInsertSchema.md │ │ │ │ │ └── agendaFoldersTableRelations.md │ │ │ │ ├── agendaItems │ │ │ │ └── variables │ │ │ │ │ ├── agendaItemsTable.md │ │ │ │ │ ├── agendaItemsTableInsertSchema.md │ │ │ │ │ └── agendaItemsTableRelations.md │ │ │ │ ├── blockedUsers │ │ │ │ └── variables │ │ │ │ │ ├── blockedUsersTable.md │ │ │ │ │ ├── blockedUsersTableInsertSchema.md │ │ │ │ │ └── blockedUsersTableRelations.md │ │ │ │ ├── chatMemberships │ │ │ │ └── variables │ │ │ │ │ ├── chatMembershipsTable.md │ │ │ │ │ ├── chatMembershipsTableInsertSchema.md │ │ │ │ │ └── chatMembershipsTableRelations.md │ │ │ │ ├── chatMessages │ │ │ │ └── variables │ │ │ │ │ ├── chatMessagesTable.md │ │ │ │ │ ├── chatMessagesTableInsertSchema.md │ │ │ │ │ └── chatMessagesTableRelations.md │ │ │ │ ├── chats │ │ │ │ └── variables │ │ │ │ │ ├── chatsTable.md │ │ │ │ │ ├── chatsTableInsertSchema.md │ │ │ │ │ └── chatsTableRelations.md │ │ │ │ ├── commentVotes │ │ │ │ └── variables │ │ │ │ │ ├── commentVotesTable.md │ │ │ │ │ ├── commentVotesTableInsertSchema.md │ │ │ │ │ └── commentVotesTableRelations.md │ │ │ │ ├── comments │ │ │ │ └── variables │ │ │ │ │ ├── commentsTable.md │ │ │ │ │ ├── commentsTableInsertSchema.md │ │ │ │ │ └── commentsTableRelations.md │ │ │ │ ├── communities │ │ │ │ └── variables │ │ │ │ │ ├── communitiesTable.md │ │ │ │ │ ├── communitiesTableInsertSchema.md │ │ │ │ │ └── communitiesTableRelations.md │ │ │ │ ├── eventAttachments │ │ │ │ └── variables │ │ │ │ │ ├── eventAttachmentsTable.md │ │ │ │ │ ├── eventAttachmentsTableInsertSchema.md │ │ │ │ │ └── eventAttachmentsTableRelations.md │ │ │ │ ├── eventAttendances │ │ │ │ └── variables │ │ │ │ │ ├── eventAttendancesTable.md │ │ │ │ │ └── eventAttendancesTableRelations.md │ │ │ │ ├── events │ │ │ │ └── variables │ │ │ │ │ ├── eventsTable.md │ │ │ │ │ ├── eventsTableInsertSchema.md │ │ │ │ │ └── eventsTableRelations.md │ │ │ │ ├── families │ │ │ │ └── variables │ │ │ │ │ ├── familiesTable.md │ │ │ │ │ └── familiesTableRelations.md │ │ │ │ ├── familyMemberships │ │ │ │ └── variables │ │ │ │ │ ├── familyMembershipsTable.md │ │ │ │ │ └── familyMembershipsTableRelations.md │ │ │ │ ├── fundCampaignPledges │ │ │ │ └── variables │ │ │ │ │ ├── fundCampaignPledgesTable.md │ │ │ │ │ ├── fundCampaignPledgesTableInsertSchema.md │ │ │ │ │ └── fundCampaignPledgesTableRelations.md │ │ │ │ ├── fundCampaigns │ │ │ │ └── variables │ │ │ │ │ ├── fundCampaignsTable.md │ │ │ │ │ ├── fundCampaignsTableInsertSchema.md │ │ │ │ │ └── fundCampaignsTableRelations.md │ │ │ │ ├── funds │ │ │ │ └── variables │ │ │ │ │ ├── fundsTable.md │ │ │ │ │ ├── fundsTableInsertSchema.md │ │ │ │ │ └── fundsTableRelations.md │ │ │ │ ├── membershipRequests │ │ │ │ └── variables │ │ │ │ │ ├── membershipRequestsTable.md │ │ │ │ │ ├── membershipRequestsTableInsertSchema.md │ │ │ │ │ └── membershipRequestsTableRelations.md │ │ │ │ ├── organizationMemberships │ │ │ │ └── variables │ │ │ │ │ ├── organizationMembershipsTable.md │ │ │ │ │ ├── organizationMembershipsTableInsertSchema.md │ │ │ │ │ └── organizationMembershipsTableRelations.md │ │ │ │ ├── organizations │ │ │ │ └── variables │ │ │ │ │ ├── organizationsTable.md │ │ │ │ │ ├── organizationsTableInsertSchema.md │ │ │ │ │ └── organizationsTableRelations.md │ │ │ │ ├── postAttachments │ │ │ │ └── variables │ │ │ │ │ ├── postAttachmentsTable.md │ │ │ │ │ ├── postAttachmentsTableInsertSchema.md │ │ │ │ │ └── postAttachmentsTableRelations.md │ │ │ │ ├── postVotes │ │ │ │ └── variables │ │ │ │ │ ├── postVotesTable.md │ │ │ │ │ ├── postVotesTableInsertSchema.md │ │ │ │ │ └── postVotesTableRelations.md │ │ │ │ ├── posts │ │ │ │ └── variables │ │ │ │ │ ├── postsTable.md │ │ │ │ │ ├── postsTableInsertSchema.md │ │ │ │ │ └── postsTableRelations.md │ │ │ │ ├── tagAssignments │ │ │ │ └── variables │ │ │ │ │ ├── tagAssignmentsTable.md │ │ │ │ │ ├── tagAssignmentsTableInsertSchema.md │ │ │ │ │ └── tagAssignmentsTableRelations.md │ │ │ │ ├── tagFolders │ │ │ │ └── variables │ │ │ │ │ ├── tagFoldersTable.md │ │ │ │ │ ├── tagFoldersTableInsertSchema.md │ │ │ │ │ └── tagFoldersTableRelations.md │ │ │ │ ├── users │ │ │ │ └── variables │ │ │ │ │ ├── usersTable.md │ │ │ │ │ ├── usersTableInsertSchema.md │ │ │ │ │ └── usersTableRelations.md │ │ │ │ ├── venueAttachments │ │ │ │ └── variables │ │ │ │ │ ├── venueAttachmentsTable.md │ │ │ │ │ ├── venueAttachmentsTableInsertSchema.md │ │ │ │ │ └── venueAttachmentsTableRelations.md │ │ │ │ ├── venueBookings │ │ │ │ └── variables │ │ │ │ │ ├── venueBookingsTable.md │ │ │ │ │ ├── venueBookingsTableInsertSchema.md │ │ │ │ │ └── venueBookingsTableRelations.md │ │ │ │ ├── venues │ │ │ │ └── variables │ │ │ │ │ ├── venuesTable.md │ │ │ │ │ ├── venuesTableInsertSchema.md │ │ │ │ │ └── venuesTableRelations.md │ │ │ │ ├── volunteerGroupAssignments │ │ │ │ └── variables │ │ │ │ │ ├── volunteerGroupAssignmentsTable.md │ │ │ │ │ └── volunteerGroupAssignmentsTableRelations.md │ │ │ │ └── volunteerGroups │ │ │ │ └── variables │ │ │ │ ├── volunteerGroupsTable.md │ │ │ │ └── volunteerGroupsTableRelations.md │ │ ├── envConfigSchema │ │ │ ├── type-aliases │ │ │ │ └── EnvConfig.md │ │ │ └── variables │ │ │ │ ├── envConfigSchema.md │ │ │ │ └── envSchemaAjv.md │ │ ├── graphql │ │ │ ├── builder │ │ │ │ └── variables │ │ │ │ │ └── builder.md │ │ │ ├── context │ │ │ │ └── type-aliases │ │ │ │ │ ├── CurrentClient.md │ │ │ │ │ ├── ExplicitAuthenticationTokenPayload.md │ │ │ │ │ ├── ExplicitGraphQLContext.md │ │ │ │ │ ├── GraphQLContext.md │ │ │ │ │ └── ImplicitMercuriusContext.md │ │ │ ├── enums │ │ │ │ ├── AdvertisementType │ │ │ │ │ └── variables │ │ │ │ │ │ └── AdvertisementType.md │ │ │ │ ├── AgendaItemType │ │ │ │ │ └── variables │ │ │ │ │ │ └── AgendaItemType.md │ │ │ │ ├── ChatMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── ChatMembershipRole.md │ │ │ │ ├── CommentVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── CommentVoteType.md │ │ │ │ ├── Iso3166Alpha2CountryCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── Iso3166Alpha2CountryCode.md │ │ │ │ ├── Iso4217CurrencyCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── Iso4217CurrencyCode.md │ │ │ │ ├── Iso639Set1LanguageCode │ │ │ │ │ └── variables │ │ │ │ │ │ └── Iso639Set1LanguageCode.md │ │ │ │ ├── OrganizationMembershipRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── OrganizationMembershipRole.md │ │ │ │ ├── PostVoteType │ │ │ │ │ └── variables │ │ │ │ │ │ └── PostVoteType.md │ │ │ │ ├── UserEducationGrade │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserEducationGrade.md │ │ │ │ ├── UserEmploymentStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserEmploymentStatus.md │ │ │ │ ├── UserMaritalStatus │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserMaritalStatus.md │ │ │ │ ├── UserNatalSex │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserNatalSex.md │ │ │ │ ├── UserRole │ │ │ │ │ └── variables │ │ │ │ │ │ └── UserRole.md │ │ │ │ └── membershipRequestStatus │ │ │ │ │ └── variables │ │ │ │ │ └── MembershipRequestStatusEnum.md │ │ │ ├── inputs │ │ │ │ ├── MutationAcceptMembershipRequestInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationAcceptMembershipRequestInput.md │ │ │ │ │ │ └── acceptMembershipRequestInputSchema.md │ │ │ │ ├── MutationBlockUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationBlockUserInput.md │ │ │ │ │ │ └── mutationBlockUserInputSchema.md │ │ │ │ ├── MutationCancelMembershipRequestInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCancelMembershipRequestInput.md │ │ │ │ │ │ └── cancelMembershipRequestInputSchema.md │ │ │ │ ├── MutationCreateAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateAdvertisementInput.md │ │ │ │ │ │ └── mutationCreateAdvertisementInputSchema.md │ │ │ │ ├── MutationCreateAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateAgendaFolderInput.md │ │ │ │ │ │ └── mutationCreateAgendaFolderInputSchema.md │ │ │ │ ├── MutationCreateAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateAgendaItemInput.md │ │ │ │ │ │ └── mutationCreateAgendaItemInputSchema.md │ │ │ │ ├── MutationCreateChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateChatInput.md │ │ │ │ │ │ └── mutationCreateChatInputSchema.md │ │ │ │ ├── MutationCreateChatMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateChatMembershipInput.md │ │ │ │ │ │ └── mutationCreateChatMembershipInputSchema.md │ │ │ │ ├── MutationCreateChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateChatMessageInput.md │ │ │ │ │ │ └── mutationCreateChatMessageInputSchema.md │ │ │ │ ├── MutationCreateCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateCommentInput.md │ │ │ │ │ │ └── mutationCreateCommentInputSchema.md │ │ │ │ ├── MutationCreateCommentVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateCommentVoteInput.md │ │ │ │ │ │ └── mutationCreateCommentVoteInputSchema.md │ │ │ │ ├── MutationCreateEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateEventInput.md │ │ │ │ │ │ └── mutationCreateEventInputSchema.md │ │ │ │ ├── MutationCreateFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateFundCampaignInput.md │ │ │ │ │ │ └── mutationCreateFundCampaignInputSchema.md │ │ │ │ ├── MutationCreateFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateFundCampaignPledgeInput.md │ │ │ │ │ │ └── mutationCreateFundCampaignPledgeInputSchema.md │ │ │ │ ├── MutationCreateFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateFundInput.md │ │ │ │ │ │ └── mutationCreateFundInputSchema.md │ │ │ │ ├── MutationCreateGetfileUrlInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateGetfileUrlInput.md │ │ │ │ │ │ └── mutationCreateGetfileUrlInputSchema.md │ │ │ │ ├── MutationCreateOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateOrganizationInput.md │ │ │ │ │ │ └── mutationCreateOrganizationInputSchema.md │ │ │ │ ├── MutationCreateOrganizationMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateOrganizationMembershipInput.md │ │ │ │ │ │ └── mutationCreateOrganizationMembershipInputSchema.md │ │ │ │ ├── MutationCreatePostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── FileMetadataInput.md │ │ │ │ │ │ ├── MutationCreatePostInput.md │ │ │ │ │ │ ├── PostAttachmentMimeType.md │ │ │ │ │ │ ├── fileMetadataSchema.md │ │ │ │ │ │ └── mutationCreatePostInputSchema.md │ │ │ │ ├── MutationCreatePostVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreatePostVoteInput.md │ │ │ │ │ │ └── mutationCreatePostVoteInputSchema.md │ │ │ │ ├── MutationCreatePresignedUrlInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreatePresignedUrlInput.md │ │ │ │ │ │ └── mutationCreatePresignedUrlInputSchema.md │ │ │ │ ├── MutationCreateTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateTagFolderInput.md │ │ │ │ │ │ └── mutationCreateTagFolderInputSchema.md │ │ │ │ ├── MutationCreateTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateTagInput.md │ │ │ │ │ │ └── mutationCreateTagInputSchema.md │ │ │ │ ├── MutationCreateUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateUserInput.md │ │ │ │ │ │ └── mutationCreateUserInputSchema.md │ │ │ │ ├── MutationCreateVenueBookingInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateVenueBookingInput.md │ │ │ │ │ │ └── mutationCreateVenueBookingInputSchema.md │ │ │ │ ├── MutationCreateVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationCreateVenueInput.md │ │ │ │ │ │ └── mutationCreateVenueInputSchema.md │ │ │ │ ├── MutationDeleteActionItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteActionItemInput.md │ │ │ │ │ │ └── mutationDeleteActionItemInputSchema.md │ │ │ │ ├── MutationDeleteAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteAdvertisementInput.md │ │ │ │ │ │ └── mutationDeleteAdvertisementInputSchema.md │ │ │ │ ├── MutationDeleteAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteAgendaFolderInput.md │ │ │ │ │ │ └── mutationDeleteAgendaFolderInputSchema.md │ │ │ │ ├── MutationDeleteAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteAgendaItemInput.md │ │ │ │ │ │ └── MutationDeleteAgendaItemInputSchema.md │ │ │ │ ├── MutationDeleteChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteChatInput.md │ │ │ │ │ │ └── mutationDeleteChatInputSchema.md │ │ │ │ ├── MutationDeleteChatMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteChatMembershipInput.md │ │ │ │ │ │ └── mutationDeleteChatMembershipInputSchema.md │ │ │ │ ├── MutationDeleteChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteChatMessageInput.md │ │ │ │ │ │ └── mutationDeleteChatMessageInputSchema.md │ │ │ │ ├── MutationDeleteCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteCommentInput.md │ │ │ │ │ │ └── mutationDeleteCommentInputSchema.md │ │ │ │ ├── MutationDeleteCommentVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteCommentVoteInput.md │ │ │ │ │ │ └── mutationDeleteCommentVoteInputSchema.md │ │ │ │ ├── MutationDeleteEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteEventInput.md │ │ │ │ │ │ └── mutationDeleteEventInputSchema.md │ │ │ │ ├── MutationDeleteFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteFundCampaignInput.md │ │ │ │ │ │ └── mutationDeleteFundCampaignInputSchema.md │ │ │ │ ├── MutationDeleteFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteFundCampaignPledgeInput.md │ │ │ │ │ │ └── mutationDeleteFundCampaignPledgeInputSchema.md │ │ │ │ ├── MutationDeleteFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteFundInput.md │ │ │ │ │ │ └── mutationDeleteFundInputSchema.md │ │ │ │ ├── MutationDeleteOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteOrganizationInput.md │ │ │ │ │ │ └── mutationDeleteOrganizationInputSchema.md │ │ │ │ ├── MutationDeleteOrganizationMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteOrganizationMembershipInput.md │ │ │ │ │ │ └── mutationDeleteOrganizationMembershipInputSchema.md │ │ │ │ ├── MutationDeletePostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeletePostInput.md │ │ │ │ │ │ └── mutationDeletePostInputSchema.md │ │ │ │ ├── MutationDeletePostVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeletePostVoteInput.md │ │ │ │ │ │ └── mutationDeletePostVoteInputSchema.md │ │ │ │ ├── MutationDeleteTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteTagFolderInput.md │ │ │ │ │ │ └── mutationDeleteTagFolderInputSchema.md │ │ │ │ ├── MutationDeleteTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteTagInput.md │ │ │ │ │ │ └── mutationDeleteTagInputSchema.md │ │ │ │ ├── MutationDeleteUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteUserInput.md │ │ │ │ │ │ └── mutationDeleteUserInputSchema.md │ │ │ │ ├── MutationDeleteVenueBookingInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteVenueBookingInput.md │ │ │ │ │ │ └── mutationDeleteVenueBookingInputSchema.md │ │ │ │ ├── MutationDeleteVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationDeleteVenueInput.md │ │ │ │ │ │ └── mutationDeleteVenueInputSchema.md │ │ │ │ ├── MutationJoinPublicOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationJoinPublicOrganizationInput.md │ │ │ │ │ │ └── joinPublicOrganizationInputSchema.md │ │ │ │ ├── MutationRejectMembershipRequestInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationRejectMembershipRequestInput.md │ │ │ │ │ │ └── rejectMembershipRequestInputSchema.md │ │ │ │ ├── MutationSendMembershipRequestInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationSendMembershipRequestInput.md │ │ │ │ │ │ └── sendMembershipRequestInputSchema.md │ │ │ │ ├── MutationSignUpInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationSignUpInput.md │ │ │ │ │ │ └── mutationSignUpInputSchema.md │ │ │ │ ├── MutationUnblockUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUnblockUserInput.md │ │ │ │ │ │ └── mutationUnblockUserInputSchema.md │ │ │ │ ├── MutationUpdateActionItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateActionItemInput.md │ │ │ │ │ │ └── MutationUpdateActionItemInputSchema.md │ │ │ │ ├── MutationUpdateAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateAdvertisementInput.md │ │ │ │ │ │ └── mutationUpdateAdvertisementInputSchema.md │ │ │ │ ├── MutationUpdateAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateAgendaFolderInput.md │ │ │ │ │ │ └── mutationUpdateAgendaFolderInputSchema.md │ │ │ │ ├── MutationUpdateAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateAgendaItemInput.md │ │ │ │ │ │ └── MutationUpdateAgendaItemInputSchema.md │ │ │ │ ├── MutationUpdateChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateChatInput.md │ │ │ │ │ │ └── mutationUpdateChatInputSchema.md │ │ │ │ ├── MutationUpdateChatMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateChatMembershipInput.md │ │ │ │ │ │ └── mutationUpdateChatMembershipInputSchema.md │ │ │ │ ├── MutationUpdateChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateChatMessageInput.md │ │ │ │ │ │ └── mutationUpdateChatMessageInputSchema.md │ │ │ │ ├── MutationUpdateCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCommentInput.md │ │ │ │ │ │ └── mutationUpdateCommentInputSchema.md │ │ │ │ ├── MutationUpdateCommentVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCommentVoteInput.md │ │ │ │ │ │ └── mutationUpdateCommentVoteInputSchema.md │ │ │ │ ├── MutationUpdateCommunityInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCommunityInput.md │ │ │ │ │ │ └── mutationUpdateCommunityInputSchema.md │ │ │ │ ├── MutationUpdateCurrentUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateCurrentUserInput.md │ │ │ │ │ │ └── mutationUpdateCurrentUserInputSchema.md │ │ │ │ ├── MutationUpdateEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateEventInput.md │ │ │ │ │ │ └── mutationUpdateEventInputSchema.md │ │ │ │ ├── MutationUpdateFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateFundCampaignInput.md │ │ │ │ │ │ └── mutationUpdateFundCampaignInputSchema.md │ │ │ │ ├── MutationUpdateFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateFundCampaignPledgeInput.md │ │ │ │ │ │ └── mutationUpdateFundCampaignPledgeInputSchema.md │ │ │ │ ├── MutationUpdateFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateFundInput.md │ │ │ │ │ │ └── mutationUpdateFundInputSchema.md │ │ │ │ ├── MutationUpdateOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateOrganizationInput.md │ │ │ │ │ │ └── mutationUpdateOrganizationInputSchema.md │ │ │ │ ├── MutationUpdateOrganizationMembershipInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateOrganizationMembershipInput.md │ │ │ │ │ │ └── mutationUpdateOrganizationMembershipInputSchema.md │ │ │ │ ├── MutationUpdatePostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdatePostInput.md │ │ │ │ │ │ └── mutationUpdatePostInputSchema.md │ │ │ │ ├── MutationUpdatePostVoteInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdatePostVoteInput.md │ │ │ │ │ │ └── mutationUpdatePostVoteInputSchema.md │ │ │ │ ├── MutationUpdateTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateTagFolderInput.md │ │ │ │ │ │ └── mutationUpdateTagFolderInputSchema.md │ │ │ │ ├── MutationUpdateTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateTagInput.md │ │ │ │ │ │ └── mutationUpdateTagInputSchema.md │ │ │ │ ├── MutationUpdateUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateUserInput.md │ │ │ │ │ │ └── mutationUpdateUserInputSchema.md │ │ │ │ ├── MutationUpdateVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MutationUpdateVenueInput.md │ │ │ │ │ │ └── mutationUpdateVenueInputSchema.md │ │ │ │ ├── QueryActionItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryActionItemsByOrganizationInput.md │ │ │ │ │ │ └── queryActionItemsByOrgInputSchema.md │ │ │ │ ├── QueryAdvertisementInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryAdvertisementInput.md │ │ │ │ │ │ └── queryAdvertisementInputSchema.md │ │ │ │ ├── QueryAgendaFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryAgendaFolderInput.md │ │ │ │ │ │ └── queryAgendaFolderInputSchema.md │ │ │ │ ├── QueryAgendaItemInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryAgendaItemInput.md │ │ │ │ │ │ └── queryAgendaItemInputSchema.md │ │ │ │ ├── QueryChatInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryChatInput.md │ │ │ │ │ │ └── queryChatInputSchema.md │ │ │ │ ├── QueryChatMessageInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryChatMessageInput.md │ │ │ │ │ │ └── queryChatMessageInputSchema.md │ │ │ │ ├── QueryCommentInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryCommentInput.md │ │ │ │ │ │ └── queryCommentInputSchema.md │ │ │ │ ├── QueryEventInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryEventInput.md │ │ │ │ │ │ └── queryEventInputSchema.md │ │ │ │ ├── QueryFundCampaignInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryFundCampaignInput.md │ │ │ │ │ │ └── queryFundCampaignInputSchema.md │ │ │ │ ├── QueryFundCampaignPledgeInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryFundCampaignPledgeInput.md │ │ │ │ │ │ └── queryFundCampaignPledgeInputSchema.md │ │ │ │ ├── QueryFundInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryFundInput.md │ │ │ │ │ │ └── queryFundInputSchema.md │ │ │ │ ├── QueryOrganizationInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MembersRoleWhereInput.md │ │ │ │ │ │ ├── MembersWhereInput.md │ │ │ │ │ │ ├── QueryOrganizationInput.md │ │ │ │ │ │ └── queryOrganizationInputSchema.md │ │ │ │ ├── QueryPostInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryPostInput.md │ │ │ │ │ │ └── queryPostInputSchema.md │ │ │ │ ├── QuerySignInInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QuerySignInInput.md │ │ │ │ │ │ └── querySignInInputSchema.md │ │ │ │ ├── QueryTagFolderInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryTagFolderInput.md │ │ │ │ │ │ └── queryTagFolderInputSchema.md │ │ │ │ ├── QueryTagInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryTagInput.md │ │ │ │ │ │ └── queryTagInputSchema.md │ │ │ │ ├── QueryUserInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryUserInput.md │ │ │ │ │ │ └── queryUserInputSchema.md │ │ │ │ ├── QueryVenueInput │ │ │ │ │ └── variables │ │ │ │ │ │ ├── QueryVenueInput.md │ │ │ │ │ │ └── queryVenueInputSchema.md │ │ │ │ └── SubscriptionChatMessageCreateInput │ │ │ │ │ └── variables │ │ │ │ │ ├── SubscriptionChatMessageCreateInput.md │ │ │ │ │ └── subscriptionChatMessageCreateInputSchema.md │ │ │ ├── pubsub │ │ │ │ └── type-aliases │ │ │ │ │ ├── PubSub.md │ │ │ │ │ └── PubSubPublishArgsByKey.md │ │ │ ├── scalars │ │ │ │ ├── BigInt │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── BigInt.md │ │ │ │ ├── Date │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── Date.md │ │ │ │ ├── DateTime │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── DateTime.md │ │ │ │ ├── EmailAddress │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── EmailAddress.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── EmailAddress.md │ │ │ │ ├── PhoneNumber │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── PhoneNumber.md │ │ │ │ ├── Upload │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── Upload.md │ │ │ │ └── type-aliases │ │ │ │ │ ├── ClientCustomScalars.md │ │ │ │ │ └── CustomScalars.md │ │ │ ├── schema │ │ │ │ └── variables │ │ │ │ │ └── schema.md │ │ │ └── types │ │ │ │ ├── ActionItem │ │ │ │ ├── ActionItem │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── ActionItem.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── ActionItem.md │ │ │ │ ├── assignee │ │ │ │ │ └── functions │ │ │ │ │ │ └── resolveAssignee.md │ │ │ │ ├── createdAt │ │ │ │ │ └── functions │ │ │ │ │ │ └── resolveCreatedAt.md │ │ │ │ └── updatedAt │ │ │ │ │ └── functions │ │ │ │ │ └── actionItemUpdatedAtResolver.md │ │ │ │ ├── ActionItemCategory │ │ │ │ └── ActionItemCategory │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── ActionItemCategory.md │ │ │ │ │ └── variables │ │ │ │ │ └── ActionItemCategory.md │ │ │ │ ├── Advertisement │ │ │ │ ├── Advertisement │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Advertisement.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Advertisement.md │ │ │ │ ├── creator │ │ │ │ │ └── functions │ │ │ │ │ │ └── advertisementCreator.md │ │ │ │ └── updatedAt │ │ │ │ │ └── functions │ │ │ │ │ └── advertisementUpdatedAtResolver.md │ │ │ │ ├── AdvertisementAttachment │ │ │ │ └── AdvertisementAttachment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── AdvertisementAttachment.md │ │ │ │ │ └── variables │ │ │ │ │ └── AdvertisementAttachment.md │ │ │ │ ├── AgendaFolder │ │ │ │ └── AgendaFolder │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── AgendaFolder.md │ │ │ │ │ └── variables │ │ │ │ │ └── AgendaFolder.md │ │ │ │ ├── AgendaItem │ │ │ │ ├── AgendaItem │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── AgendaItem.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── AgendaItem.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveUpdater.md │ │ │ │ ├── AuthenticationPayload │ │ │ │ ├── type-aliases │ │ │ │ │ └── AuthenticationPayload.md │ │ │ │ └── variables │ │ │ │ │ └── AuthenticationPayload.md │ │ │ │ ├── BlockedUser │ │ │ │ └── BlockedUser │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── BlockedUser.md │ │ │ │ │ └── variables │ │ │ │ │ └── BlockedUser.md │ │ │ │ ├── Chat │ │ │ │ ├── Chat │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Chat.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Chat.md │ │ │ │ ├── updatedAt │ │ │ │ │ └── functions │ │ │ │ │ │ └── resolveUpdatedAt.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveUpdater.md │ │ │ │ ├── ChatMessage │ │ │ │ └── ChatMessage │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── ChatMessage.md │ │ │ │ │ └── variables │ │ │ │ │ └── ChatMessage.md │ │ │ │ ├── Comment │ │ │ │ └── Comment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── Comment.md │ │ │ │ │ └── variables │ │ │ │ │ └── Comment.md │ │ │ │ ├── Community │ │ │ │ ├── Community │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Community.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Community.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── communityUpdater.md │ │ │ │ ├── Event │ │ │ │ ├── Event │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Event.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Event.md │ │ │ │ ├── createdAt │ │ │ │ │ └── functions │ │ │ │ │ │ └── eventCreatedAtResolver.md │ │ │ │ ├── creator │ │ │ │ │ └── functions │ │ │ │ │ │ └── eventCreatorResolver.md │ │ │ │ ├── updatedAt │ │ │ │ │ └── functions │ │ │ │ │ │ └── eventUpdatedAtResolver.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveEventUpdater.md │ │ │ │ ├── EventAttachment │ │ │ │ └── EventAttachment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── EventAttachment.md │ │ │ │ │ └── variables │ │ │ │ │ └── EventAttachment.md │ │ │ │ ├── Fund │ │ │ │ ├── Fund │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Fund.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Fund.md │ │ │ │ ├── creator │ │ │ │ │ └── functions │ │ │ │ │ │ └── FundCreatorResolver.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveUpdater.md │ │ │ │ ├── FundCampaign │ │ │ │ ├── FundCampaign │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── FundCampaign.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── FundCampaign.md │ │ │ │ └── updatedAt │ │ │ │ │ └── functions │ │ │ │ │ └── updatedAtResolver.md │ │ │ │ ├── FundCampaignPledge │ │ │ │ ├── FundCampaignPledge │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── FundCampaignPledge.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── FundCampaignPledge.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveUpdater.md │ │ │ │ ├── Mutation │ │ │ │ ├── createChatMembership │ │ │ │ │ └── variables │ │ │ │ │ │ └── ChatMembershipResolver.md │ │ │ │ ├── deleteChatMessage │ │ │ │ │ └── functions │ │ │ │ │ │ └── deleteChatMessageResolver.md │ │ │ │ └── updateChatMessage │ │ │ │ │ └── functions │ │ │ │ │ └── updateChatMessageResolver.md │ │ │ │ ├── Organization │ │ │ │ ├── AcceptMembershipResponse │ │ │ │ │ └── variables │ │ │ │ │ │ └── AcceptMembershipResponse.md │ │ │ │ ├── CancelMembershipResponse │ │ │ │ │ └── variables │ │ │ │ │ │ └── CancelMembershipResponse.md │ │ │ │ ├── MembershipRequestObject │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── MembershipRequestType.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── MembershipRequestObject.md │ │ │ │ ├── Organization │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Organization.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Organization.md │ │ │ │ ├── OrganizationMembership │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── OrganizationMembershipType.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── OrganizationMembershipObject.md │ │ │ │ ├── RejectMembershipResponse │ │ │ │ │ └── variables │ │ │ │ │ │ └── RejectMembershipResponse.md │ │ │ │ ├── creator │ │ │ │ │ └── functions │ │ │ │ │ │ └── OrganizationCreatorResolver.md │ │ │ │ ├── isMember │ │ │ │ │ └── functions │ │ │ │ │ │ └── isMemberResolver.md │ │ │ │ ├── membersInfo │ │ │ │ │ └── functions │ │ │ │ │ │ ├── adminsCountResolver.md │ │ │ │ │ │ └── membersCountResolver.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── OrganizationUpdater.md │ │ │ │ ├── Post │ │ │ │ ├── GetUrlResponse │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── GetUrlResponse.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── GetUrlResponse.md │ │ │ │ ├── Post │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Post.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Post.md │ │ │ │ ├── UploadUrlResponse │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── UploadUrlResponse.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── UploadUrlResponse.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveUpdater.md │ │ │ │ ├── PostAttachment │ │ │ │ └── PostAttachment │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── PostAttachment.md │ │ │ │ │ └── variables │ │ │ │ │ └── PostAttachment.md │ │ │ │ ├── Query │ │ │ │ ├── ActionCategory │ │ │ │ │ └── variables │ │ │ │ │ │ └── actionCategoriesByOrganization.md │ │ │ │ ├── ActionItem │ │ │ │ │ └── variables │ │ │ │ │ │ └── actionItemsByOrganization.md │ │ │ │ └── organizations │ │ │ │ │ └── functions │ │ │ │ │ └── resolveOrganizations.md │ │ │ │ ├── Tag │ │ │ │ ├── Tag │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Tag.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Tag.md │ │ │ │ ├── creator │ │ │ │ │ └── functions │ │ │ │ │ │ └── tagCreatorResolver.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveUpdater.md │ │ │ │ ├── TagFolder │ │ │ │ └── TagFolder │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── TagFolder.md │ │ │ │ │ └── variables │ │ │ │ │ └── TagFolder.md │ │ │ │ ├── User │ │ │ │ ├── User │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── User.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── User.md │ │ │ │ ├── createdOrganizations │ │ │ │ │ └── functions │ │ │ │ │ │ └── resolveCreatedOrganizations.md │ │ │ │ └── organizationsWhereMember │ │ │ │ │ └── functions │ │ │ │ │ └── resolveOrganizationsWhereMember.md │ │ │ │ ├── Venue │ │ │ │ ├── Venue │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── Venue.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── Venue.md │ │ │ │ ├── creator │ │ │ │ │ └── functions │ │ │ │ │ │ └── venueCreator.md │ │ │ │ └── updater │ │ │ │ │ └── functions │ │ │ │ │ └── resolveUpdater.md │ │ │ │ └── VenueAttachment │ │ │ │ └── VenueAttachment │ │ │ │ ├── type-aliases │ │ │ │ └── VenueAttachment.md │ │ │ │ └── variables │ │ │ │ └── VenueAttachment.md │ │ ├── plugins │ │ │ ├── drizzleClient │ │ │ │ └── functions │ │ │ │ │ └── drizzleClient.md │ │ │ ├── functions │ │ │ │ └── plugins.md │ │ │ ├── minioClient │ │ │ │ └── functions │ │ │ │ │ └── minioClient.md │ │ │ └── seedInitialData │ │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── routes │ │ │ ├── functions │ │ │ │ └── routes.md │ │ │ ├── graphql │ │ │ │ ├── functions │ │ │ │ │ ├── createContext.md │ │ │ │ │ └── graphql.md │ │ │ │ └── type-aliases │ │ │ │ │ └── CreateContext.md │ │ │ ├── healthcheck │ │ │ │ └── functions │ │ │ │ │ └── healthcheck.md │ │ │ └── objects │ │ │ │ └── functions │ │ │ │ └── objects.md │ │ └── utilities │ │ │ ├── TalawaGraphQLError │ │ │ ├── classes │ │ │ │ └── TalawaGraphQLError.md │ │ │ ├── type-aliases │ │ │ │ ├── ArgumentsAssociatedResourcesNotFoundExtensions.md │ │ │ │ ├── ForbiddenActionExtensions.md │ │ │ │ ├── ForbiddenActionOnArgumentsAssociatedResourcesExtensions.md │ │ │ │ ├── InvalidArgumentsExtensions.md │ │ │ │ ├── TalawaGraphQLErrorExtensions.md │ │ │ │ ├── TalawaGraphQLFormattedError.md │ │ │ │ ├── TooManyRequestsExtensions.md │ │ │ │ ├── UnauthenticatedExtensions.md │ │ │ │ ├── UnauthorizedActionExtensions.md │ │ │ │ ├── UnauthorizedActionOnArgumentsAssociatedResourcesExtensions.md │ │ │ │ ├── UnauthorizedArgumentsExtensions.md │ │ │ │ └── UnexpectedExtensions.md │ │ │ └── variables │ │ │ │ └── defaultTalawaGraphQLErrorMessages.md │ │ │ ├── defaultGraphQLConnection │ │ │ ├── functions │ │ │ │ ├── createGraphQLConnectionWithWhereSchema.md │ │ │ │ ├── transformDefaultGraphQLConnectionArguments.md │ │ │ │ ├── transformGraphQLConnectionArgumentsWithWhere.md │ │ │ │ └── transformToDefaultGraphQLConnection.md │ │ │ ├── type-aliases │ │ │ │ ├── DefaultGraphQLConnection.md │ │ │ │ ├── DefaultGraphQLConnectionEdge.md │ │ │ │ ├── DefaultGraphQLConnectionPageInfo.md │ │ │ │ ├── ParsedDefaultGraphQLConnectionArguments.md │ │ │ │ └── ParsedDefaultGraphQLConnectionArgumentsWithWhere.md │ │ │ └── variables │ │ │ │ └── defaultGraphQLConnectionArgumentsSchema.md │ │ │ ├── getKeyPathsWithNonUndefinedValues │ │ │ └── functions │ │ │ │ └── getKeyPathsWithNonUndefinedValues.md │ │ │ ├── graphqLimits │ │ │ └── variables │ │ │ │ └── default.md │ │ │ ├── isNotNullish │ │ │ └── functions │ │ │ │ └── isNotNullish.md │ │ │ └── leakyBucket │ │ │ └── functions │ │ │ └── default.md │ │ ├── developer-resources │ │ ├── introduction.md │ │ ├── operation.md │ │ ├── pagination.md │ │ ├── pnpm-scripts.md │ │ ├── rate-limiting.md │ │ ├── testing.md │ │ └── troubleshooting.md │ │ ├── getting-started │ │ ├── environment-variables.md │ │ └── installation.md │ │ └── introduction.md ├── docusaurus.config.ts ├── package.json ├── pnpm-lock.yaml ├── sidebars.ts ├── src │ ├── components │ │ └── layout │ │ │ └── HeaderHero.tsx │ ├── css │ │ ├── custom.css │ │ └── index.css │ ├── pages │ │ ├── index.module.css │ │ └── index.tsx │ └── utils │ │ ├── ActionButton.tsx │ │ ├── Heading.tsx │ │ ├── HomeCallToAction.tsx │ │ └── Section.tsx ├── static │ ├── .nojekyll │ ├── CNAME │ └── img │ │ ├── Fifth-Panel-Image.png │ │ ├── High_level_offline_action_flow.png │ │ ├── Talawa.jpg │ │ ├── api-community.png │ │ ├── base_feed_manager_flow.png │ │ ├── design_system.png │ │ ├── docs_workflow.png │ │ ├── document-deprecated.png │ │ ├── document-draft.png │ │ ├── docusaurus copy.png │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── email │ │ ├── draft-submissions.png │ │ ├── freelists.png │ │ ├── info.png │ │ ├── mentors.png │ │ └── submissions.png │ │ ├── facebook.svg │ │ ├── favicon.ico │ │ ├── github-dark.svg │ │ ├── github.svg │ │ ├── group_chat.svg │ │ ├── gsod-2022.jpg │ │ ├── gsod2022-green.png │ │ ├── gsod2022-white.png │ │ ├── icon-dark.svg │ │ ├── icon.svg │ │ ├── icons │ │ ├── facebook.svg │ │ ├── favicon_palisadoes.ico │ │ ├── github-dark.svg │ │ ├── github.svg │ │ ├── instagram.svg │ │ ├── opportunities.svg │ │ ├── slack.svg │ │ ├── source.svg │ │ ├── team.svg │ │ ├── twitter.svg │ │ ├── youtube-white.svg │ │ └── youtube.svg │ │ ├── image-01.png │ │ ├── image-02.png │ │ ├── image-03.png │ │ ├── image-04.png │ │ ├── image-05.jpg │ │ ├── image-07.png │ │ ├── image-08.png │ │ ├── image-09.png │ │ ├── image-10.png │ │ ├── instagram.svg │ │ ├── logo copy.svg │ │ ├── logo-main.png │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logos copy │ │ ├── favicon.ico │ │ ├── talawa-logo-200x200.png │ │ ├── talawa-logo-600x600.png │ │ ├── talawa-logo-clear-space.png │ │ ├── talawa-logo-colors.png │ │ ├── talawa-logo.ai │ │ ├── talawa-logo.eps │ │ ├── talawa-logo.pdf │ │ └── talawa-logo.svg │ │ ├── logos │ │ ├── github-dark.svg │ │ ├── github.svg │ │ ├── logo.png │ │ ├── youtube-light.svg │ │ └── youtube.svg │ │ ├── markdown │ │ └── misc │ │ │ ├── logo.png │ │ │ └── talawa-logo-lite-200x200.png │ │ ├── opportunities.svg │ │ ├── panel-5-img.png │ │ ├── perform_action_wrapper_flow.png │ │ ├── plugin │ │ ├── plugin-store-navbar.PNG │ │ ├── plugin-types.PNG │ │ ├── store.PNG │ │ └── talawa.PNG │ │ ├── slack.svg │ │ ├── source.svg │ │ ├── talawa-logo-svg.svg │ │ ├── talawa_lint │ │ ├── lint_warning_ex.png │ │ └── no_lint_ex.png │ │ ├── team.svg │ │ ├── teams.svg │ │ ├── teams_1.svg │ │ ├── twitter.svg │ │ ├── undraw_docusaurus_mountain copy.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react copy.svg │ │ ├── undraw_docusaurus_react.svg │ │ ├── undraw_docusaurus_tree copy.svg │ │ ├── undraw_docusaurus_tree.svg │ │ ├── youtube-white.svg │ │ └── youtube.svg └── tsconfig.json ├── drizzle.config.ts ├── drizzle_migrations ├── 20250726110906_fearless_molten_man.sql └── meta │ ├── 20250726110906_snapshot.json │ └── _journal.json ├── envFiles ├── .env.ci ├── .env.deploy ├── .env.devcontainer └── .env.production ├── fix-readme-links.js ├── lefthook.yaml ├── package.json ├── pnpm-lock.yaml ├── pyproject.toml ├── renovate.json ├── schema.graphql ├── scripts ├── dbManagement │ ├── addSampleData.ts │ ├── helpers.ts │ ├── resetData.ts │ └── sample_data │ │ ├── action_categories.json │ │ ├── action_items.json │ │ ├── comment_votes.json │ │ ├── comments.json │ │ ├── events.json │ │ ├── images │ │ ├── DALL·E_talawa_1.webp │ │ ├── DALL·E_talawa_2.webp │ │ ├── DALL·E_talawa_3.webp │ │ ├── DALL·E_talawa_4.webp │ │ ├── DALL·E_talawa_5.webp │ │ └── DALL·E_talawa_6.webp │ │ ├── membership_requests.json │ │ ├── organization_memberships.json │ │ ├── organizations.json │ │ ├── post_attachments.json │ │ ├── post_votes.json │ │ ├── posts.json │ │ └── users.json ├── generateGraphQLSDLFile.ts ├── port-check │ └── port.sh └── setup │ ├── setup.ts │ └── updateEnvVariable.ts ├── setup.ts ├── src ├── README.md ├── createServer.ts ├── drizzle │ ├── README.md │ ├── enums │ │ ├── advertisementAttachmentMimeType.ts │ │ ├── advertisementType.ts │ │ ├── agendaItemType.ts │ │ ├── chatMembershipRole.ts │ │ ├── commentVoteType.ts │ │ ├── eventAttachmentMimeType.ts │ │ ├── familyMembershipRole.ts │ │ ├── imageMimeType.ts │ │ ├── iso3166Alpha2CountryCode.ts │ │ ├── iso4217CurrencyCode.ts │ │ ├── iso639Set1LanguageCode.ts │ │ ├── membershipRequestStatus.ts │ │ ├── organizationMembershipRole.ts │ │ ├── postAttachmentMimeType.ts │ │ ├── postVoteType.ts │ │ ├── recurrenceFrequency.ts │ │ ├── userEducationGrade.ts │ │ ├── userEmploymentStatus.ts │ │ ├── userMaritalStatus.ts │ │ ├── userNatalSex.ts │ │ ├── userRole.ts │ │ ├── venueAttachmentMimeType.ts │ │ ├── videoMimeType.ts │ │ └── volunteerGroupAssignmentInviteStatus.ts │ ├── schema.ts │ └── tables │ │ ├── actionCategories.ts │ │ ├── actions.ts │ │ ├── advertisementAttachments.ts │ │ ├── advertisements.ts │ │ ├── agendaFolders.ts │ │ ├── agendaItems.ts │ │ ├── blockedUsers.ts │ │ ├── chatMemberships.ts │ │ ├── chatMessages.ts │ │ ├── chats.ts │ │ ├── commentVotes.ts │ │ ├── comments.ts │ │ ├── communities.ts │ │ ├── eventAttachments.ts │ │ ├── eventAttendances.ts │ │ ├── eventGenerationWindows.ts │ │ ├── events.ts │ │ ├── families.ts │ │ ├── familyMemberships.ts │ │ ├── fundCampaignPledges.ts │ │ ├── fundCampaigns.ts │ │ ├── funds.ts │ │ ├── membershipRequests.ts │ │ ├── organizationMemberships.ts │ │ ├── organizations.ts │ │ ├── plugins.ts │ │ ├── postAttachments.ts │ │ ├── postVotes.ts │ │ ├── posts.ts │ │ ├── recurrenceRules.ts │ │ ├── recurringEventExceptions.ts │ │ ├── recurringEventInstances.ts │ │ ├── tagAssignments.ts │ │ ├── tagFolders.ts │ │ ├── tags.ts │ │ ├── users.ts │ │ ├── venueAttachments.ts │ │ ├── venueBookings.ts │ │ ├── venues.ts │ │ ├── volunteerGroupAssignments.ts │ │ └── volunteerGroups.ts ├── envConfigSchema.ts ├── fastifyPlugins │ ├── README.md │ ├── backgroundWorkers.ts │ ├── drizzleClient.ts │ ├── index.ts │ ├── minioClient.ts │ ├── pluginSystem.ts │ └── seedInitialData.ts ├── graphql │ ├── README.md │ ├── builder.ts │ ├── context.ts │ ├── enums │ │ ├── AdvertisementType.ts │ │ ├── AgendaItemType.ts │ │ ├── ChatMembershipRole.ts │ │ ├── CommentVoteType.ts │ │ ├── Iso3166Alpha2CountryCode.ts │ │ ├── Iso4217CurrencyCode.ts │ │ ├── Iso639Set1LanguageCode.ts │ │ ├── OrganizationMembershipRole.ts │ │ ├── PostVoteType.ts │ │ ├── README.md │ │ ├── RecurrenceFrequency.ts │ │ ├── UserEducationGrade.ts │ │ ├── UserEmploymentStatus.ts │ │ ├── UserMaritalStatus.ts │ │ ├── UserNatalSex.ts │ │ ├── UserRole.ts │ │ ├── index.ts │ │ └── membershipRequestStatus.ts │ ├── inputs │ │ ├── MutationAcceptMembershipRequestInput.ts │ │ ├── MutationAssignUserTagInput.ts │ │ ├── MutationBlockUserInput.ts │ │ ├── MutationCancelMembershipRequestInput.ts │ │ ├── MutationCreateActionItemCategoryInput.ts │ │ ├── MutationCreateAdvertisementInput.ts │ │ ├── MutationCreateAgendaFolderInput.ts │ │ ├── MutationCreateAgendaItemInput.ts │ │ ├── MutationCreateChatInput.ts │ │ ├── MutationCreateChatMembershipInput.ts │ │ ├── MutationCreateChatMessageInput.ts │ │ ├── MutationCreateCommentInput.ts │ │ ├── MutationCreateCommentVoteInput.ts │ │ ├── MutationCreateEventInput.ts │ │ ├── MutationCreateEventVolunteerGroupInput.ts │ │ ├── MutationCreateFundCampaignInput.ts │ │ ├── MutationCreateFundCampaignPledgeInput.ts │ │ ├── MutationCreateFundInput.ts │ │ ├── MutationCreateGetfileUrlInput.ts │ │ ├── MutationCreateOrganizationInput.ts │ │ ├── MutationCreateOrganizationMembershipInput.ts │ │ ├── MutationCreatePostInput.ts │ │ ├── MutationCreatePostVoteInput.ts │ │ ├── MutationCreatePresignedUrlInput.ts │ │ ├── MutationCreateTagFolderInput.ts │ │ ├── MutationCreateTagInput.ts │ │ ├── MutationCreateUserInput.ts │ │ ├── MutationCreateVenueBookingInput.ts │ │ ├── MutationCreateVenueInput.ts │ │ ├── MutationCreateVolunteerGroupAssignments.ts │ │ ├── MutationDeleteActionItemCategoryInput.ts │ │ ├── MutationDeleteActionItemInput.ts │ │ ├── MutationDeleteAdvertisementInput.ts │ │ ├── MutationDeleteAgendaFolderInput.ts │ │ ├── MutationDeleteAgendaItemInput.ts │ │ ├── MutationDeleteChatInput.ts │ │ ├── MutationDeleteChatMembershipInput.ts │ │ ├── MutationDeleteChatMessageInput.ts │ │ ├── MutationDeleteCommentInput.ts │ │ ├── MutationDeleteCommentVoteInput.ts │ │ ├── MutationDeleteEntireRecurringEventSeriesInput.ts │ │ ├── MutationDeleteEventInput.ts │ │ ├── MutationDeleteEventVolunteerGroupInput.ts │ │ ├── MutationDeleteFundCampaignInput.ts │ │ ├── MutationDeleteFundCampaignPledgeInput.ts │ │ ├── MutationDeleteFundInput.ts │ │ ├── MutationDeleteOrganizationInput.ts │ │ ├── MutationDeleteOrganizationMembershipInput.ts │ │ ├── MutationDeletePostInput.ts │ │ ├── MutationDeletePostVoteInput.ts │ │ ├── MutationDeleteSingleEventInstanceInput.ts │ │ ├── MutationDeleteStandaloneEventInput.ts │ │ ├── MutationDeleteTagFolderInput.ts │ │ ├── MutationDeleteTagInput.ts │ │ ├── MutationDeleteThisAndFollowingEventsInput.ts │ │ ├── MutationDeleteUserInput.ts │ │ ├── MutationDeleteVenueBookingInput.ts │ │ ├── MutationDeleteVenueInput.ts │ │ ├── MutationJoinPublicOrganizationInput.ts │ │ ├── MutationRejectMembershipRequestInput.ts │ │ ├── MutationSendMembershipRequestInput.ts │ │ ├── MutationSignUpInput.ts │ │ ├── MutationUnassignUserTagInput.ts │ │ ├── MutationUnblockUserInput.ts │ │ ├── MutationUpdateActionItemCategoryInput.ts │ │ ├── MutationUpdateActionItemInput.ts │ │ ├── MutationUpdateAdvertisementInput.ts │ │ ├── MutationUpdateAgendaFolderInput.ts │ │ ├── MutationUpdateAgendaItemInput.ts │ │ ├── MutationUpdateChatInput.ts │ │ ├── MutationUpdateChatMembershipInput.ts │ │ ├── MutationUpdateChatMessageInput.ts │ │ ├── MutationUpdateCommentInput.ts │ │ ├── MutationUpdateCommentVoteInput.ts │ │ ├── MutationUpdateCommunityInput.ts │ │ ├── MutationUpdateCurrentUserInput.ts │ │ ├── MutationUpdateEventInput.ts │ │ ├── MutationUpdateEventVolunteerGroupInput.ts │ │ ├── MutationUpdateFundCampaignInput.ts │ │ ├── MutationUpdateFundCampaignPledgeInput.ts │ │ ├── MutationUpdateFundInput.ts │ │ ├── MutationUpdateOrganizationInput.ts │ │ ├── MutationUpdateOrganizationMembershipInput.ts │ │ ├── MutationUpdatePostInput.ts │ │ ├── MutationUpdatePostVoteInput.ts │ │ ├── MutationUpdateTagFolderInput.ts │ │ ├── MutationUpdateTagInput.ts │ │ ├── MutationUpdateUserInput.ts │ │ ├── MutationUpdateVenueInput.ts │ │ ├── MutationUpdateVolunteerGroupAssignments.ts │ │ ├── QueryActionItemInput.ts │ │ ├── QueryAdvertisementInput.ts │ │ ├── QueryAgendaFolderInput.ts │ │ ├── QueryAgendaItemInput.ts │ │ ├── QueryChatInput.ts │ │ ├── QueryChatMessageInput.ts │ │ ├── QueryCommentInput.ts │ │ ├── QueryEventInput.ts │ │ ├── QueryEventVolunteerGroupsInput.ts │ │ ├── QueryFundCampaignInput.ts │ │ ├── QueryFundCampaignPledgeInput.ts │ │ ├── QueryFundInput.ts │ │ ├── QueryHasUserVotedInput.ts │ │ ├── QueryOrganizationInput.ts │ │ ├── QueryPostInput.ts │ │ ├── QuerySignInInput.ts │ │ ├── QueryTagFolderInput.ts │ │ ├── QueryTagInput.ts │ │ ├── QueryUserInput.ts │ │ ├── QueryVenueInput.ts │ │ ├── QueryVolunteerGroupAssignments.ts │ │ ├── README.md │ │ ├── RecurrenceInput.ts │ │ ├── SubscriptionChatMessageCreateInput.ts │ │ └── index.ts │ ├── interfaces │ │ ├── README.md │ │ └── index.ts │ ├── pubsub.ts │ ├── scalars │ │ ├── BigInt.ts │ │ ├── Date.ts │ │ ├── DateTime.ts │ │ ├── EmailAddress.ts │ │ ├── PhoneNumber.ts │ │ ├── README.md │ │ ├── Upload.ts │ │ └── index.ts │ ├── schema.ts │ ├── schemaManager.ts │ ├── types │ │ ├── ActionItem │ │ │ ├── ActionItem.ts │ │ │ ├── actionItemCategory.ts │ │ │ ├── assignee.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── event.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── ActionItemCategory │ │ │ ├── ActionItemCategory.ts │ │ │ ├── actionItems.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── Advertisement │ │ │ ├── Advertisement.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── AdvertisementAttachment │ │ │ ├── AdvertisementAttachment.ts │ │ │ ├── index.ts │ │ │ └── url.ts │ │ ├── AgendaFolder │ │ │ ├── AgendaFolder.ts │ │ │ ├── childFolders.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── event.ts │ │ │ ├── index.ts │ │ │ ├── items.ts │ │ │ ├── parentFolder.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── AgendaItem │ │ │ ├── AgendaItem.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── folder.ts │ │ │ ├── index.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── AssignUserTag │ │ │ ├── AssignUserTag.ts │ │ │ └── index.ts │ │ ├── AuthenticationPayload.ts │ │ ├── BlockedUser │ │ │ ├── BlockedUser.ts │ │ │ └── index.ts │ │ ├── Chat │ │ │ ├── Chat.ts │ │ │ ├── avatarURL.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ ├── members.ts │ │ │ ├── messages.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── ChatMessage │ │ │ ├── ChatMessage.ts │ │ │ ├── chat.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ └── parentMessage.ts │ │ ├── Comment │ │ │ ├── Comment.ts │ │ │ ├── creator.ts │ │ │ ├── downVoters.ts │ │ │ ├── downVotesCount.ts │ │ │ ├── index.ts │ │ │ ├── post.ts │ │ │ ├── upVoters.ts │ │ │ └── upVotesCount.ts │ │ ├── Community │ │ │ ├── Community.ts │ │ │ ├── index.ts │ │ │ ├── logoURL.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── Event │ │ │ ├── Event.ts │ │ │ ├── actionItems.ts │ │ │ ├── agendaFolders.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ ├── updater.ts │ │ │ └── venues.ts │ │ ├── EventAttachment │ │ │ ├── EventAttachment.ts │ │ │ ├── index.ts │ │ │ └── url.ts │ │ ├── Fund │ │ │ ├── Fund.ts │ │ │ ├── campaigns.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── FundCampaign │ │ │ ├── FundCampaign.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── fund.ts │ │ │ ├── index.ts │ │ │ ├── pledgedAmount.ts │ │ │ ├── pledges.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── FundCampaignPledge │ │ │ ├── FundCampaignPledge.ts │ │ │ ├── campaign.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ ├── pledger.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── Mutation │ │ │ ├── Mutation.ts │ │ │ ├── acceptMembershipRequest.ts │ │ │ ├── assignUserTag.ts │ │ │ ├── blockUser.ts │ │ │ ├── cancelMembershipRequest.ts │ │ │ ├── createActionItem.ts │ │ │ ├── createActionItemCategory.ts │ │ │ ├── createAdvertisement.ts │ │ │ ├── createAgendaFolder.ts │ │ │ ├── createAgendaItem.ts │ │ │ ├── createChat.ts │ │ │ ├── createChatMembership.ts │ │ │ ├── createChatMessage.ts │ │ │ ├── createComment.ts │ │ │ ├── createCommentVote.ts │ │ │ ├── createEvent.ts │ │ │ ├── createEventVolunteerGroup.ts │ │ │ ├── createFund.ts │ │ │ ├── createFundCampaign.ts │ │ │ ├── createFundCampaignPledge.ts │ │ │ ├── createGetfileUrl.ts │ │ │ ├── createOrganization.ts │ │ │ ├── createOrganizationMembership.ts │ │ │ ├── createPost.ts │ │ │ ├── createPostVote.ts │ │ │ ├── createPresignedUrl.ts │ │ │ ├── createTag.ts │ │ │ ├── createTagFolder.ts │ │ │ ├── createUser.ts │ │ │ ├── createVenue.ts │ │ │ ├── createVenueBooking.ts │ │ │ ├── createVolunteerGroupAssignments.ts │ │ │ ├── deleteActionItem.ts │ │ │ ├── deleteActionItemCategory.ts │ │ │ ├── deleteAdvertisement.ts │ │ │ ├── deleteAgendaFolder.ts │ │ │ ├── deleteAgendaItem.ts │ │ │ ├── deleteChat.ts │ │ │ ├── deleteChatMembership.ts │ │ │ ├── deleteChatMessage.ts │ │ │ ├── deleteComment.ts │ │ │ ├── deleteCommentVote.ts │ │ │ ├── deleteCurrentUser.ts │ │ │ ├── deleteEntireRecurringEventSeries.ts │ │ │ ├── deleteEventVolunteerGroup.ts │ │ │ ├── deleteFund.ts │ │ │ ├── deleteFundCampaign.ts │ │ │ ├── deleteFundCampaignPledge.ts │ │ │ ├── deleteOrganization.ts │ │ │ ├── deleteOrganizationMembership.ts │ │ │ ├── deletePost.ts │ │ │ ├── deletePostVote.ts │ │ │ ├── deleteSingleEventInstance.ts │ │ │ ├── deleteStandaloneEvent.ts │ │ │ ├── deleteTag.ts │ │ │ ├── deleteTagFolder.ts │ │ │ ├── deleteThisAndFollowingEvents.ts │ │ │ ├── deleteUser.ts │ │ │ ├── deleteVenue.ts │ │ │ ├── deleteVenueBooking.ts │ │ │ ├── index.ts │ │ │ ├── joinPublicOrganization.ts │ │ │ ├── plugin │ │ │ │ ├── createPlugin.ts │ │ │ │ ├── deletePlugin.ts │ │ │ │ ├── index.ts │ │ │ │ └── updatePlugin.ts │ │ │ ├── rejectMembershipRequest.ts │ │ │ ├── sendMembershipRequest.ts │ │ │ ├── signUp.ts │ │ │ ├── unassignUserTag.ts │ │ │ ├── unblockUser.ts │ │ │ ├── updateActionItem.ts │ │ │ ├── updateActionItemCategory.ts │ │ │ ├── updateAdvertisement.ts │ │ │ ├── updateAgendaFolder.ts │ │ │ ├── updateAgendaItem.ts │ │ │ ├── updateChat.ts │ │ │ ├── updateChatMembership.ts │ │ │ ├── updateChatMessage.ts │ │ │ ├── updateComment.ts │ │ │ ├── updateCommentVote.ts │ │ │ ├── updateCommunity.ts │ │ │ ├── updateCurrentUser.ts │ │ │ ├── updateEvent.ts │ │ │ ├── updateEventVolunteerGroup.ts │ │ │ ├── updateFund.ts │ │ │ ├── updateFundCampaign.ts │ │ │ ├── updateFundCampaignPledge.ts │ │ │ ├── updateOrganization.ts │ │ │ ├── updateOrganizationMembership.ts │ │ │ ├── updatePost.ts │ │ │ ├── updatePostVote.ts │ │ │ ├── updateTag.ts │ │ │ ├── updateTagFolder.ts │ │ │ ├── updateUser.ts │ │ │ ├── updateVenue.ts │ │ │ ├── updateVolunteerGroupAssignments.ts │ │ │ └── uploadPluginZip.ts │ │ ├── Organization │ │ │ ├── AcceptMembershipResponse.ts │ │ │ ├── CancelMembershipResponse.ts │ │ │ ├── MembershipRequestObject.ts │ │ │ ├── Organization.ts │ │ │ ├── OrganizationMembership.ts │ │ │ ├── RejectMembershipResponse.ts │ │ │ ├── actionItemCategories.ts │ │ │ ├── advertisements.ts │ │ │ ├── avatarURL.ts │ │ │ ├── blockedUsers.ts │ │ │ ├── chats.ts │ │ │ ├── creator.ts │ │ │ ├── events.ts │ │ │ ├── funds.ts │ │ │ ├── index.ts │ │ │ ├── isMember.ts │ │ │ ├── members.ts │ │ │ ├── membersInfo.ts │ │ │ ├── membershipRequests.ts │ │ │ ├── pinnedPosts.ts │ │ │ ├── pinnedPostsCount.ts │ │ │ ├── posts.ts │ │ │ ├── postsCount.ts │ │ │ ├── tagFolders.ts │ │ │ ├── tags.ts │ │ │ ├── updatedAt.ts │ │ │ ├── updater.ts │ │ │ └── venues.ts │ │ ├── Plugin │ │ │ ├── Plugin.ts │ │ │ ├── index.ts │ │ │ └── inputs.ts │ │ ├── Post │ │ │ ├── GetUrlResponse.ts │ │ │ ├── Post.ts │ │ │ ├── UploadUrlResponse.ts │ │ │ ├── comments.ts │ │ │ ├── commentsCount.ts │ │ │ ├── creator.ts │ │ │ ├── downVoters.ts │ │ │ ├── downVotesCount.ts │ │ │ ├── hasUserVoted.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── sorting.ts │ │ │ ├── upVoters.ts │ │ │ ├── upVotesCount.ts │ │ │ └── updater.ts │ │ ├── PostAttachment │ │ │ ├── PostAttachment.ts │ │ │ ├── index.ts │ │ │ └── url.ts │ │ ├── Query │ │ │ ├── ActionCategoryByOrg.ts │ │ │ ├── ActionItemByOrg.ts │ │ │ ├── Events.ts │ │ │ ├── Query.ts │ │ │ ├── actionItemCategory.ts │ │ │ ├── actionItemsByUser.ts │ │ │ ├── advertisement.ts │ │ │ ├── agendaFolder.ts │ │ │ ├── agendaItem.ts │ │ │ ├── allUsers.ts │ │ │ ├── chat.ts │ │ │ ├── chatMessage.ts │ │ │ ├── comment.ts │ │ │ ├── community.ts │ │ │ ├── currentUser.ts │ │ │ ├── event.ts │ │ │ ├── eventQueries │ │ │ │ ├── index.ts │ │ │ │ ├── recurringEventInstanceQueries.ts │ │ │ │ ├── standaloneEventQueries.ts │ │ │ │ └── unifiedEventQueries.ts │ │ │ ├── fund.ts │ │ │ ├── fundCampaign.ts │ │ │ ├── fundCampaignPledge.ts │ │ │ ├── getPledgesByUserId.ts │ │ │ ├── hasUserVoted.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── organizationUsers.ts │ │ │ ├── organizations.ts │ │ │ ├── plugins.ts │ │ │ ├── post.ts │ │ │ ├── renewAuthenticationToken.ts │ │ │ ├── signIn.ts │ │ │ ├── tag.ts │ │ │ ├── tagFolder.ts │ │ │ ├── user.ts │ │ │ ├── venue.ts │ │ │ ├── volunteerGroupAssignments.ts │ │ │ └── volunteerGroups.ts │ │ ├── README.md │ │ ├── Subscription │ │ │ ├── Subscription.ts │ │ │ ├── chatMessageCreate.ts │ │ │ └── index.ts │ │ ├── Tag │ │ │ ├── Tag.ts │ │ │ ├── assignees.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── folder.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── TagFolder │ │ │ ├── TagFolder.ts │ │ │ ├── childFolders.ts │ │ │ ├── creator.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── parentFolder.ts │ │ │ ├── tags.ts │ │ │ └── updater.ts │ │ ├── UnassignUserTag │ │ │ ├── UnassignUserTag.ts │ │ │ └── index.ts │ │ ├── User │ │ │ ├── User.ts │ │ │ ├── addressLine1.ts │ │ │ ├── addressLine2.ts │ │ │ ├── avatarURL.ts │ │ │ ├── birthDate.ts │ │ │ ├── city.ts │ │ │ ├── countryCode.ts │ │ │ ├── createdOrganizations.ts │ │ │ ├── creator.ts │ │ │ ├── educationGrade.ts │ │ │ ├── emailAddress.ts │ │ │ ├── employmentStatus.ts │ │ │ ├── homePhoneNumber.ts │ │ │ ├── index.ts │ │ │ ├── isEmailAddressVerified.ts │ │ │ ├── maritalStatus.ts │ │ │ ├── mobilePhoneNumber.ts │ │ │ ├── natalSex.ts │ │ │ ├── naturalLanguageCode.ts │ │ │ ├── organizationsWhereMember.ts │ │ │ ├── postalCode.ts │ │ │ ├── state.ts │ │ │ ├── updatedAt.ts │ │ │ ├── updater.ts │ │ │ └── workPhoneNumber.ts │ │ ├── Venue │ │ │ ├── Venue.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── events.ts │ │ │ ├── index.ts │ │ │ ├── organization.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── VenueAttachment │ │ │ ├── VenueAttachment.ts │ │ │ ├── index.ts │ │ │ └── url.ts │ │ ├── VolunteerGroup │ │ │ ├── VolunteerGroup.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── event.ts │ │ │ ├── index.ts │ │ │ ├── leader.ts │ │ │ ├── updatedAt.ts │ │ │ └── updater.ts │ │ ├── VolunteerGroupAssignment │ │ │ ├── VolunteerGroupAssignment.ts │ │ │ ├── assignee.ts │ │ │ ├── createdAt.ts │ │ │ ├── creator.ts │ │ │ ├── group.ts │ │ │ ├── index.ts │ │ │ ├── updatedAt.ts │ │ │ └── updator.ts │ │ └── index.ts │ └── unions │ │ ├── README.md │ │ └── index.ts ├── index.ts ├── plugin │ ├── README.md │ ├── available │ │ └── readme.md │ ├── index.ts │ ├── manager │ │ ├── core.ts │ │ ├── extensions.ts │ │ ├── index.ts │ │ ├── lifecycle.ts │ │ └── registry.ts │ ├── registry.ts │ ├── types.ts │ └── utils.ts ├── plugins │ ├── backgroundWorkers.ts │ └── index.ts ├── routes │ ├── README.md │ ├── graphql.ts │ ├── healthcheck.ts │ ├── index.ts │ └── objects.ts ├── services │ └── eventGeneration │ │ ├── eventGeneration.ts │ │ ├── index.ts │ │ ├── instanceResolver.ts │ │ ├── occurrenceCalculator.ts │ │ ├── types.ts │ │ └── windowManager.ts ├── utilities │ ├── TalawaGraphQLError.ts │ ├── authorization.ts │ ├── defaultGraphQLConnection.ts │ ├── getKeyPathsWithNonUndefinedValues.ts │ ├── graphqLimits.ts │ ├── isNotNullish.ts │ ├── leakyBucket.ts │ ├── pluginInstaller.ts │ └── recurringEventHelpers.ts └── workers │ ├── backgroundWorkerService.ts │ ├── eventCleanupWorker.ts │ ├── eventGeneration │ ├── eventGenerationPipeline.ts │ ├── executionEngine.ts │ ├── jobDiscovery.ts │ ├── postProcessor.ts │ ├── types.ts │ └── windowManager.ts │ └── index.ts ├── test ├── README.md ├── _Mocks_ │ ├── drizzleClientMock.ts │ ├── mockContextCreator │ │ └── mockContextCreator.ts │ ├── mockMinioClient.ts │ ├── mockUser.ts │ └── pubsubMock.ts ├── drizzle.config.ts ├── envConfigSchema.ts ├── fix-readme-links.test.js ├── graphql │ ├── schemaManager.test.ts │ └── types │ │ ├── ActionItem │ │ ├── actionItemCategory.test.ts │ │ ├── assignee.test.ts │ │ ├── creator.test.ts │ │ ├── organization.test.ts │ │ └── updater.test.ts │ │ ├── ActionItemCategory │ │ ├── actionItems.test.ts │ │ ├── createdAt.test.ts │ │ ├── creator.test.ts │ │ ├── organization.test.ts │ │ ├── updatedAt.test.ts │ │ └── updater.test.ts │ │ ├── Advertisement │ │ ├── creator.test.ts │ │ └── updatedAt.test.ts │ │ ├── AgendaItem │ │ └── updater.test.ts │ │ ├── Chat │ │ ├── updatedAt.test.ts │ │ └── updater.test.ts │ │ ├── Community │ │ └── updater.test.ts │ │ ├── Event │ │ ├── actionItem.test.ts │ │ ├── createdAt.test.ts │ │ ├── creator.test.ts │ │ ├── updatedAt.test.ts │ │ └── updater.test.ts │ │ ├── Fund │ │ ├── creator.test.ts │ │ └── updater.test.ts │ │ ├── FundCampaign │ │ └── updatedAt.test.ts │ │ ├── FundCampaignPledge │ │ └── updater.test.ts │ │ ├── Mutation │ │ ├── acceptMembershipRequest.test.ts │ │ ├── assignUserTag.test.ts │ │ ├── blockUser.test.ts │ │ ├── createActionItem.test.ts │ │ ├── createActionItemCategory.test.ts │ │ ├── createChatMembership.test.ts │ │ ├── createEventVolunteerGroup.test.ts │ │ ├── createGetfileUrl.test.ts │ │ ├── createPost.test.ts │ │ ├── createPresignedUrl.test.ts │ │ ├── createUser.test.ts │ │ ├── createVolunteerGroupAssignment.test.ts │ │ ├── deleteActionItem.test.ts │ │ ├── deleteActionItemCategory.test.ts │ │ ├── deleteAgendaItem.test.ts │ │ ├── deleteChatMessage.test.ts │ │ ├── deleteCurrentUser.test.ts │ │ ├── deleteEntireRecurringEventSeries.test.ts │ │ ├── deleteEventVolunteerGroup.test.ts │ │ ├── deletePost.test.ts │ │ ├── deleteSingleEventInstance.test.ts │ │ ├── deleteStandaloneEvent.test.ts │ │ ├── deleteThisAndFollowingEvents.test.ts │ │ ├── deleteUser.test.ts │ │ ├── joinPublicOrganization.test.ts │ │ ├── plugin │ │ │ ├── createPlugin.test.ts │ │ │ ├── deletePlugin.test.ts │ │ │ ├── index.test.ts │ │ │ └── updatePlugin.test.ts │ │ ├── rejectMembershipRequest.test.ts │ │ ├── signUp.test.ts │ │ ├── unassignUserTag.test.ts │ │ ├── unblockUser.test.ts │ │ ├── updateActionItem.test.ts │ │ ├── updateActionItemCategory.test.ts │ │ ├── updateAgendaItem.test.ts │ │ ├── updateChatMessage.test.ts │ │ ├── updateCurrentUser.test.ts │ │ ├── updateEventVolunteerGroup.test.ts │ │ ├── updatePost.test.ts │ │ ├── updateUser.test.ts │ │ ├── updateVolunteerGroupAssignment.test.ts │ │ └── uploadPluginZip.test.ts │ │ ├── Organization │ │ ├── actionItemCategories.test.ts │ │ ├── advertisement.test.ts │ │ ├── blockedUsers.test.ts │ │ ├── creator.test.ts │ │ ├── events.test.ts │ │ ├── membersInfo.test.ts │ │ └── updater.test.ts │ │ ├── Post │ │ └── updater.test.ts │ │ ├── Query │ │ ├── ActionCategoryByOrg.test.ts │ │ ├── ActionItemByOrg.test.ts │ │ ├── Events.test.ts │ │ ├── actionItemCategory.test.ts │ │ ├── actionItemsByUser.test.ts │ │ ├── agendaItem.test.ts │ │ ├── allUsers.test.ts │ │ ├── chat.test.ts │ │ ├── currentUser.test.ts │ │ ├── event.test.ts │ │ ├── fund.test.ts │ │ ├── hasUserVoted.test.ts │ │ ├── organizationMembers.test.ts │ │ ├── organizationUsers.test.ts │ │ ├── organizations.test.ts │ │ ├── plugins.test.ts │ │ ├── post.test.ts │ │ ├── renewAuthenticationToken.test.ts │ │ ├── signIn.test.ts │ │ ├── tag.test.ts │ │ ├── user.test.ts │ │ ├── volunteerGroupAssignments.test.ts │ │ └── volunteerGroups.test.ts │ │ ├── README.md │ │ ├── Tag │ │ ├── creator.test.ts │ │ └── updater.test.ts │ │ ├── User │ │ ├── createdOrganizations.test.ts │ │ ├── creator.test.ts │ │ ├── organizationsWhereMember.test.ts │ │ ├── updatedAt.test.ts │ │ └── updater.test.ts │ │ ├── Venue │ │ ├── creator.test.ts │ │ └── updater.test.ts │ │ ├── VolunteerGroup │ │ ├── createdAt.test.ts │ │ ├── creator.test.ts │ │ ├── event.test.ts │ │ ├── leader.test.ts │ │ ├── updatedAt.test.ts │ │ └── updater.test.ts │ │ ├── VolunteerGroupAssignment │ │ ├── assignee.test.ts │ │ ├── createdAt.test.ts │ │ ├── creator.test.ts │ │ ├── group.test.ts │ │ ├── updatedAt.test.ts │ │ └── updator.test.ts │ │ ├── client.ts │ │ ├── createRegularUserUsingAdmin.ts │ │ ├── documentNodes.ts │ │ ├── gql.tada-cache.d.ts │ │ └── gql.tada.d.ts ├── helpers.ts ├── plugin │ ├── graphql.test.ts │ ├── index.test.ts │ ├── manager │ │ ├── core.test.ts │ │ ├── extensions.test.ts │ │ ├── index.test.ts │ │ ├── lifecycle.test.ts │ │ └── registry.test.ts │ ├── registry.test.ts │ ├── types.test.ts │ └── utils.test.ts ├── routes │ ├── graphql.test.ts │ └── graphql │ │ ├── documentNodes.ts │ │ └── gql.tada.d.ts ├── scripts │ ├── dbManagement │ │ ├── addSampleData.test.ts │ │ ├── helpers.test.ts │ │ └── resetDB.test.ts │ └── setup │ │ ├── administratorEmail.test.ts │ │ ├── apiSetup.test.ts │ │ ├── caddySetup.test.ts │ │ ├── cloudbeaverSetup.test.ts │ │ ├── envSetup.spec.ts │ │ ├── minioSetup.test.ts │ │ ├── postgresSetup.test.ts │ │ ├── setup.test.ts │ │ └── updateEnvVariable.test.ts ├── server.ts ├── services │ └── eventInstanceGeneration │ │ ├── eventGeneration.test.ts │ │ ├── instanceResolver.test.ts │ │ ├── occurrenceCalculator.test.ts │ │ └── windowManager.test.ts ├── setup.ts ├── utilities │ ├── defaultGraphQlConnection.test.ts │ ├── mockLogger.ts │ ├── pluginInstaller.test.ts │ └── recurringEventHelpers.test.ts └── workers │ ├── eventCleanupWorker.test.ts │ └── eventGeneration │ ├── eventGenerationPipeline.test.ts │ ├── executionEngine.test.ts │ ├── jobDiscovery.test.ts │ ├── postProcessor.test.ts │ └── windowManager.test.ts ├── tsconfig.docs.json ├── tsconfig.json ├── typedoc.json └── vitest.config.ts /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E402,E722,E203,F401,W503 3 | max-line-length = 80 4 | -------------------------------------------------------------------------------- /.github/workflows/auto-label.json5: -------------------------------------------------------------------------------- 1 | { 2 | labelsSynonyms: { 3 | 'ci/cd': ['.github', 'Workflow', 'ci/cd'], 4 | dependencies: [ 5 | 'dependabot', 6 | 'dependency', 7 | 'dependencies', 8 | 'package', 9 | 'packages', 10 | ], 11 | security: ['security'], 12 | 'ui/ux': ['layout', 'screen', 'design', 'figma'], 13 | }, 14 | defaultLabels: ['unapproved'], 15 | } 16 | 17 | -------------------------------------------------------------------------------- /.github/workflows/requirements.txt: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | # DO NOT DELETE 3 | ############################################################################# 4 | # 5 | # Required for GitHub Action workflow python checks 6 | # 7 | ############################################################################# 8 | ############################################################################# 9 | 10 | black 11 | pydocstyle 12 | flake8 13 | flake8-docstrings 14 | docstring_parser 15 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/.nojekyll -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # https://github.com/evilmartians/lefthook/blob/master/docs/install.md#-nodejs 2 | side-effects-cache=false -------------------------------------------------------------------------------- /.pydocstyle: -------------------------------------------------------------------------------- 1 | [pydocstyle] 2 | convention=google 3 | add-ignore=D415,D205 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.defaultFormatter": "esbenp.prettier-vscode", 3 | 4 | "[javascript, typescript]": { 5 | "editor.defaultFormatter": "esbenp.prettier-vscode", 6 | "editor.formatOnSave": true 7 | }, 8 | "[python]": { 9 | "editor.defaultFormatter": "ms-python.black-formatter", 10 | "editor.formatOnSave": true 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # More information at this link: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners 2 | /.github/ @palisadoes 3 | # CODEOWNERS @palisadoes 4 | -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- 1 | # Talawa-API Installation 2 | 3 | Installation documentation can be found at these locations: 4 | 5 | 1. Online at https://docs-api.talawa.io/docs/installation 6 | 1. In the local repository at [INSTALLATION.md](docs/docs/docs/getting-started/installation.md) which is the source file for the web page. 7 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Production 5 | /build 6 | /.docusaurus-debug.log 7 | /build-stats.json 8 | docs/.docusaurus-debug.log 9 | docs/build-stats.json 10 | 11 | # Generated files 12 | .docusaurus 13 | .cache-loader 14 | package-lock.json 15 | .eslintcache 16 | tsconfig.tsbuildinfo 17 | 18 | # Misc 19 | .DS_Store 20 | .env.local 21 | .env.development.local 22 | .env.test.local 23 | .env.production.local 24 | 25 | npm-debug.log* 26 | yarn-debug.log* 27 | yarn-error.log* 28 | 29 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs-api.talawa.io 2 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/advertisementType/variables/advertisementTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementTypeEnum 6 | 7 | > `const` **advertisementTypeEnum**: `ZodEnum`\<\[`"banner"`, `"menu"`, `"pop_up"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/advertisementType.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/advertisementType.ts#L6) 10 | 11 | Possible variants of the type of an advertisement. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/agendaItemType/variables/agendaItemTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: agendaItemTypeEnum 6 | 7 | > `const` **agendaItemTypeEnum**: `ZodEnum`\<\[`"general"`, `"note"`, `"scripture"`, `"song"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/agendaItemType.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/agendaItemType.ts#L6) 10 | 11 | Possible variants of the type of an agenda item. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/chatMembershipRole/variables/chatMembershipRoleEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMembershipRoleEnum 6 | 7 | > `const` **chatMembershipRoleEnum**: `ZodEnum`\<\[`"administrator"`, `"regular"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/chatMembershipRole.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/chatMembershipRole.ts#L6) 10 | 11 | Possible variants of the role assigned to a user within a chat. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/commentVoteType/variables/commentVoteTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentVoteTypeEnum 6 | 7 | > `const` **commentVoteTypeEnum**: `ZodEnum`\<\[`"down_vote"`, `"up_vote"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/commentVoteType.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/commentVoteType.ts#L6) 10 | 11 | Possible variants of the type of of a vote on a comment. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/imageMimeType/variables/imageMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: imageMimeTypeEnum 6 | 7 | > `const` **imageMimeTypeEnum**: `ZodEnum`\<\[`"image/avif"`, `"image/jpeg"`, `"image/png"`, `"image/webp"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/imageMimeType.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/imageMimeType.ts#L6) 10 | 11 | Possible variants of the type of an image. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/postVoteType/variables/postVoteTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postVoteTypeEnum 6 | 7 | > `const` **postVoteTypeEnum**: `ZodEnum`\<\[`"down_vote"`, `"up_vote"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/postVoteType.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/postVoteType.ts#L6) 10 | 11 | Possible variants of the type of a vote on a post. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/userNatalSex/variables/userNatalSexEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userNatalSexEnum 6 | 7 | > `const` **userNatalSexEnum**: `ZodEnum`\<\[`"female"`, `"intersex"`, `"male"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/userNatalSex.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/userNatalSex.ts#L6) 10 | 11 | Possible variants of the sex assigned to a user at birth. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/userRole/variables/userRoleEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userRoleEnum 6 | 7 | > `const` **userRoleEnum**: `ZodEnum`\<\[`"administrator"`, `"regular"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/userRole.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/userRole.ts#L6) 10 | 11 | Possible variants of the role assigned to a user. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/enums/videoMimeType/variables/videoMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: videoMimeTypeEnum 6 | 7 | > `const` **videoMimeTypeEnum**: `ZodEnum`\<\[`"video/mp4"`, `"video/webm"`\]\> 8 | 9 | Defined in: [src/drizzle/enums/videoMimeType.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/enums/videoMimeType.ts#L6) 10 | 11 | Possible variants of the type of a video. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/actionCategories/variables/actionCategoriesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: actionCategoriesTable 6 | 7 | > `const` **actionCategoriesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/actionCategories.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/actionCategories.ts#L16) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/actions/variables/actionsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: actionsTable 6 | 7 | > `const` **actionsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/actions.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/actions.ts#L16) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/advertisements/variables/advertisementsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementsTable 6 | 7 | > `const` **advertisementsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/advertisements.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/advertisements.ts#L20) 10 | 11 | Drizzle orm postgres table definition for advertisements. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/agendaFolders/variables/agendaFoldersTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: agendaFoldersTable 6 | 7 | > `const` **agendaFoldersTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/agendaFolders.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/agendaFolders.ts#L20) 10 | 11 | Drizzle orm postgres table definition for agenda folders. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/agendaItems/variables/agendaItemsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: agendaItemsTable 6 | 7 | > `const` **agendaItemsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/agendaItems.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/agendaItems.ts#L12) 10 | 11 | Drizzle orm postgres table definition for agenda items. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/chatMemberships/variables/chatMembershipsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMembershipsTable 6 | 7 | > `const` **chatMembershipsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/chatMemberships.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/chatMemberships.ts#L18) 10 | 11 | Drizzle orm postgres table definition for chat memberships. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/chatMessages/variables/chatMessagesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMessagesTable 6 | 7 | > `const` **chatMessagesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/chatMessages.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/chatMessages.ts#L18) 10 | 11 | Drizzle orm postgres table definition for chat messages. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/chats/variables/chatsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatsTable 6 | 7 | > `const` **chatsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/chats.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/chats.ts#L14) 10 | 11 | Drizzle orm postgres table definition for chats. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/commentVotes/variables/commentVotesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentVotesTable 6 | 7 | > `const` **commentVotesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/commentVotes.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/commentVotes.ts#L19) 10 | 11 | Drizzle orm postgres table definition for comment votes. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/commentVotes/variables/commentVotesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentVotesTableRelations 6 | 7 | > `const` **commentVotesTableRelations**: `Relations`\<`"comment_votes"`, \{ `comment`: `One`\<`"comments"`, `true`\>; `creator`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: [src/drizzle/tables/commentVotes.ts:77](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/commentVotes.ts#L77) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/comments/variables/commentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentsTable 6 | 7 | > `const` **commentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/comments.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/comments.ts#L12) 10 | 11 | Drizzle orm postgres table definition for comments. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/communities/variables/communitiesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: communitiesTable 6 | 7 | > `const` **communitiesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/communities.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/communities.ts#L11) 10 | 11 | Drizzle orm postgres table definition for a community. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/communities/variables/communitiesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: communitiesTableRelations 6 | 7 | > `const` **communitiesTableRelations**: `Relations`\<`"communities"`, \{ `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: [src/drizzle/tables/communities.ts:99](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/communities.ts#L99) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/eventAttachments/variables/eventAttachmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventAttachmentsTable 6 | 7 | > `const` **eventAttachmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/eventAttachments.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/eventAttachments.ts#L11) 10 | 11 | Drizzle orm postgres table definition for event attachments. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/eventAttendances/variables/eventAttendancesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventAttendancesTable 6 | 7 | > `const` **eventAttendancesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/eventAttendances.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/eventAttendances.ts#L9) 10 | 11 | Drizzle orm postgres table definition for event attendances. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/events/variables/eventsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventsTable 6 | 7 | > `const` **eventsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/events.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/events.ts#L15) 10 | 11 | Drizzle orm postgres table definition for events. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/families/variables/familiesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: familiesTable 6 | 7 | > `const` **familiesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/families.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/families.ts#L15) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/familyMemberships/variables/familyMembershipsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: familyMembershipsTable 6 | 7 | > `const` **familyMembershipsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/familyMemberships.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/familyMemberships.ts#L14) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/fundCampaignPledges/variables/fundCampaignPledgesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundCampaignPledgesTable 6 | 7 | > `const` **fundCampaignPledgesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/fundCampaignPledges.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/fundCampaignPledges.ts#L19) 10 | 11 | Drizzle orm postgres table definition for fund campaign pledges. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/fundCampaigns/variables/fundCampaignsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundCampaignsTable 6 | 7 | > `const` **fundCampaignsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/fundCampaigns.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/fundCampaigns.ts#L21) 10 | 11 | Drizzle orm postgres table definition for fund campaigns. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/funds/variables/fundsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundsTable 6 | 7 | > `const` **fundsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/funds.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/funds.ts#L20) 10 | 11 | Drizzle orm postgres table definition for funds. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/organizations/variables/organizationsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: organizationsTable 6 | 7 | > `const` **organizationsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/organizations.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/organizations.ts#L24) 10 | 11 | Drizzle orm postgres table definition for organizations. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/postAttachments/variables/postAttachmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postAttachmentsTable 6 | 7 | > `const` **postAttachmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/postAttachments.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/postAttachments.ts#L11) 10 | 11 | Drizzle orm postgres table definition for post attachments. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/postVotes/variables/postVotesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postVotesTable 6 | 7 | > `const` **postVotesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/postVotes.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/postVotes.ts#L19) 10 | 11 | Drizzle orm postgres table definition for post votes. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/postVotes/variables/postVotesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postVotesTableRelations 6 | 7 | > `const` **postVotesTableRelations**: `Relations`\<`"post_votes"`, \{ `creator`: `One`\<`"users"`, `false`\>; `post`: `One`\<`"posts"`, `true`\>; \}\> 8 | 9 | Defined in: [src/drizzle/tables/postVotes.ts:77](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/postVotes.ts#L77) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/posts/variables/postsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postsTable 6 | 7 | > `const` **postsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/posts.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/posts.ts#L14) 10 | 11 | Drizzle orm postgres table definition for posts. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/tagAssignments/variables/tagAssignmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: tagAssignmentsTable 6 | 7 | > `const` **tagAssignmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/tagAssignments.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/tagAssignments.ts#L16) 10 | 11 | Drizzle orm postgres table definition for tag assignments. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/tagFolders/variables/tagFoldersTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: tagFoldersTable 6 | 7 | > `const` **tagFoldersTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/tagFolders.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/tagFolders.ts#L19) 10 | 11 | Drizzle orm postgres table definition for tag folders. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/users/variables/usersTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: usersTable 6 | 7 | > `const` **usersTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/users.ts:59](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/users.ts#L59) 10 | 11 | Drizzle orm postgres table definition for users. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/venueAttachments/variables/venueAttachmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueAttachmentsTable 6 | 7 | > `const` **venueAttachmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/venueAttachments.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/venueAttachments.ts#L11) 10 | 11 | Drizzle orm postgres table definition for venue attachments. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/venueBookings/variables/venueBookingsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueBookingsTable 6 | 7 | > `const` **venueBookingsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/venueBookings.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/venueBookings.ts#L17) 10 | 11 | Drizzle orm postgres table definition for venue bookings. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/venues/variables/venuesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venuesTable 6 | 7 | > `const` **venuesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/venues.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/venues.ts#L20) 10 | 11 | Drizzle orm postgres table definition for venues. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/volunteerGroupAssignments/variables/volunteerGroupAssignmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: volunteerGroupAssignmentsTable 6 | 7 | > `const` **volunteerGroupAssignmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/volunteerGroupAssignments.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/volunteerGroupAssignments.ts#L14) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/drizzle/tables/volunteerGroups/variables/volunteerGroupsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: volunteerGroupsTable 6 | 7 | > `const` **volunteerGroupsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: [src/drizzle/tables/volunteerGroups.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/drizzle/tables/volunteerGroups.ts#L16) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/envConfigSchema/type-aliases/EnvConfig.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EnvConfig 6 | 7 | > **EnvConfig**: `Static`\<*typeof* [`envConfigSchema`](../variables/envConfigSchema.md)\> 8 | 9 | Defined in: [src/envConfigSchema.ts:237](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/envConfigSchema.ts#L237) 10 | 11 | Type of the object containing parsed configuration environment variables. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/inputs/MutationCreatePostVoteInput/variables/mutationCreatePostVoteInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationCreatePostVoteInputSchema 6 | 7 | > `const` **mutationCreatePostVoteInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, \{\}, \{\}\> 8 | 9 | Defined in: [src/graphql/inputs/MutationCreatePostVoteInput.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/inputs/MutationCreatePostVoteInput.ts#L6) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/inputs/MutationUpdatePostVoteInput/variables/mutationUpdatePostVoteInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationUpdatePostVoteInputSchema 6 | 7 | > `const` **mutationUpdatePostVoteInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, \{\}, \{\}\> 8 | 9 | Defined in: [src/graphql/inputs/MutationUpdatePostVoteInput.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/inputs/MutationUpdatePostVoteInput.ts#L6) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/inputs/QueryTagInput/variables/queryTagInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryTagInputSchema 6 | 7 | > `const` **queryTagInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: [src/graphql/inputs/QueryTagInput.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/inputs/QueryTagInput.ts#L5) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/scalars/Date/type-aliases/Date.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: \_Date 6 | 7 | > **\_Date**: `object` 8 | 9 | Defined in: [src/graphql/scalars/Date.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/scalars/Date.ts#L12) 10 | 11 | `Date` scalar type for pothos schema. 12 | 13 | ## Type declaration 14 | 15 | ### Input 16 | 17 | > **Input**: `Date` 18 | 19 | ### Output 20 | 21 | > **Output**: `Date` 22 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/schema/variables/schema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: schema 6 | 7 | > `const` **schema**: `GraphQLSchema` 8 | 9 | Defined in: [src/graphql/schema.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/schema.ts#L12) 10 | 11 | This is the executable graphql schema. 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/AgendaFolder/AgendaFolder/type-aliases/AgendaFolder.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AgendaFolder 6 | 7 | > **AgendaFolder**: *typeof* `agendaFoldersTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/AgendaFolder/AgendaFolder.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/AgendaFolder/AgendaFolder.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/AgendaItem/AgendaItem/type-aliases/AgendaItem.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AgendaItem 6 | 7 | > **AgendaItem**: *typeof* `agendaItemsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/AgendaItem/AgendaItem.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/AgendaItem/AgendaItem.ts#L5) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/Chat/Chat/type-aliases/Chat.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Chat 6 | 7 | > **Chat**: *typeof* `chatsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/Chat/Chat.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/Chat/Chat.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/ChatMessage/ChatMessage/type-aliases/ChatMessage.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: ChatMessage 6 | 7 | > **ChatMessage**: *typeof* `chatMessagesTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/ChatMessage/ChatMessage.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/ChatMessage/ChatMessage.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/Comment/Comment/type-aliases/Comment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Comment 6 | 7 | > **Comment**: *typeof* `commentsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/Comment/Comment.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/Comment/Comment.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/Community/Community/type-aliases/Community.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Community 6 | 7 | > **Community**: *typeof* `communitiesTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/Community/Community.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/Community/Community.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/EventAttachment/EventAttachment/type-aliases/EventAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EventAttachment 6 | 7 | > **EventAttachment**: *typeof* `eventAttachmentsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/EventAttachment/EventAttachment.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/EventAttachment/EventAttachment.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/Fund/Fund/type-aliases/Fund.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Fund 6 | 7 | > **Fund**: *typeof* `fundsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/Fund/Fund.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/Fund/Fund.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/FundCampaign/FundCampaign/type-aliases/FundCampaign.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: FundCampaign 6 | 7 | > **FundCampaign**: *typeof* `fundCampaignsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/FundCampaign/FundCampaign.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/FundCampaign/FundCampaign.ts#L5) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/FundCampaignPledge/FundCampaignPledge/type-aliases/FundCampaignPledge.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: FundCampaignPledge 6 | 7 | > **FundCampaignPledge**: *typeof* `fundCampaignPledgesTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/FundCampaignPledge/FundCampaignPledge.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/FundCampaignPledge/FundCampaignPledge.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/Organization/Organization/type-aliases/Organization.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Organization 6 | 7 | > **Organization**: *typeof* `organizationsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/Organization/Organization.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/Organization/Organization.ts#L5) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/PostAttachment/PostAttachment/type-aliases/PostAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: PostAttachment 6 | 7 | > **PostAttachment**: *typeof* `postAttachmentsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/PostAttachment/PostAttachment.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/PostAttachment/PostAttachment.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/Tag/Tag/type-aliases/Tag.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Tag 6 | 7 | > **Tag**: *typeof* `tagsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/Tag/Tag.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/Tag/Tag.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/TagFolder/TagFolder/type-aliases/TagFolder.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: TagFolder 6 | 7 | > **TagFolder**: *typeof* `tagFoldersTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/TagFolder/TagFolder.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/TagFolder/TagFolder.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/User/User/type-aliases/User.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: User 6 | 7 | > **User**: *typeof* `usersTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/User/User.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/User/User.ts#L6) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/graphql/types/VenueAttachment/VenueAttachment/type-aliases/VenueAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: VenueAttachment 6 | 7 | > **VenueAttachment**: *typeof* `venueAttachmentsTable.$inferSelect` 8 | 9 | Defined in: [src/graphql/types/VenueAttachment/VenueAttachment.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/graphql/types/VenueAttachment/VenueAttachment.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/plugins/functions/plugins.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: plugins() 6 | 7 | > **plugins**(`fastify`): `Promise`\<`void`\> 8 | 9 | Defined in: [src/plugins/index.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/plugins/index.ts#L6) 10 | 11 | ## Parameters 12 | 13 | ### fastify 14 | 15 | `FastifyInstance`\<`IncomingMessage`, `ServerResponse`\> 16 | 17 | ## Returns 18 | 19 | `Promise`\<`void`\> 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utilities/TalawaGraphQLError/variables/defaultTalawaGraphQLErrorMessages.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: defaultTalawaGraphQLErrorMessages 6 | 7 | > `const` **defaultTalawaGraphQLErrorMessages**: `{ [Key in TalawaGraphQLErrorExtensions["code"]]: string }` 8 | 9 | Defined in: [src/utilities/TalawaGraphQLError.ts:213](https://github.com/PalisadoesFoundation/talawa-api/blob/c34688c69eb12a5eb721ebc8a0cd60b53e5fbf81/src/utilities/TalawaGraphQLError.ts#L213) 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/advertisementAttachmentMimeType/variables/advertisementAttachmentMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementAttachmentMimeTypeEnum 6 | 7 | > `const` **advertisementAttachmentMimeTypeEnum**: `ZodEnum`\<\[`"image/avif"`, `"image/jpeg"`, `"image/png"`, `"image/webp"`, `"video/mp4"`, `"video/webm"`\]\> 8 | 9 | Defined in: src/drizzle/enums/advertisementAttachmentMimeType.ts:8 10 | 11 | Possible variants of the type of an attachement of an advertisement. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/advertisementType/variables/advertisementTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementTypeEnum 6 | 7 | > `const` **advertisementTypeEnum**: `ZodEnum`\<\[`"banner"`, `"menu"`, `"pop_up"`\]\> 8 | 9 | Defined in: src/drizzle/enums/advertisementType.ts:6 10 | 11 | Possible variants of the type of an advertisement. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/agendaItemType/variables/agendaItemTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: agendaItemTypeEnum 6 | 7 | > `const` **agendaItemTypeEnum**: `ZodEnum`\<\[`"general"`, `"note"`, `"scripture"`, `"song"`\]\> 8 | 9 | Defined in: src/drizzle/enums/agendaItemType.ts:6 10 | 11 | Possible variants of the type of an agenda item. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/chatMembershipRole/variables/chatMembershipRoleEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMembershipRoleEnum 6 | 7 | > `const` **chatMembershipRoleEnum**: `ZodEnum`\<\[`"administrator"`, `"regular"`\]\> 8 | 9 | Defined in: src/drizzle/enums/chatMembershipRole.ts:6 10 | 11 | Possible variants of the role assigned to a user within a chat. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/commentVoteType/variables/commentVoteTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentVoteTypeEnum 6 | 7 | > `const` **commentVoteTypeEnum**: `ZodEnum`\<\[`"down_vote"`, `"up_vote"`\]\> 8 | 9 | Defined in: src/drizzle/enums/commentVoteType.ts:6 10 | 11 | Possible variants of the type of of a vote on a comment. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/eventAttachmentMimeType/variables/eventAttachmentMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventAttachmentMimeTypeEnum 6 | 7 | > `const` **eventAttachmentMimeTypeEnum**: `ZodEnum`\<\[`"image/avif"`, `"image/jpeg"`, `"image/png"`, `"image/webp"`, `"video/mp4"`, `"video/webm"`\]\> 8 | 9 | Defined in: src/drizzle/enums/eventAttachmentMimeType.ts:8 10 | 11 | Possible variants of the type of an attachement of an event. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/familyMembershipRole/variables/familyMembershipRoleEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: familyMembershipRoleEnum 6 | 7 | > `const` **familyMembershipRoleEnum**: `ZodEnum`\<\[`"adult"`, `"child"`, `"head_of_household"`, `"spouse"`\]\> 8 | 9 | Defined in: src/drizzle/enums/familyMembershipRole.ts:6 10 | 11 | Possible variants of the role of a user in a family(if applicable). 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/imageMimeType/variables/imageMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: imageMimeTypeEnum 6 | 7 | > `const` **imageMimeTypeEnum**: `ZodEnum`\<\[`"image/avif"`, `"image/jpeg"`, `"image/png"`, `"image/webp"`\]\> 8 | 9 | Defined in: src/drizzle/enums/imageMimeType.ts:6 10 | 11 | Possible variants of the type of an image. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/membershipRequestStatus/variables/MembershipRequestStatusValues.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MembershipRequestStatusValues 6 | 7 | > `const` **MembershipRequestStatusValues**: readonly \[`"pending"`, `"approved"`, `"rejected"`\] 8 | 9 | Defined in: src/drizzle/enums/membershipRequestStatus.ts:12 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/organizationMembershipRole/variables/organizationMembershipRoleEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: organizationMembershipRoleEnum 6 | 7 | > `const` **organizationMembershipRoleEnum**: `ZodEnum`\<\[`"administrator"`, `"regular"`\]\> 8 | 9 | Defined in: src/drizzle/enums/organizationMembershipRole.ts:6 10 | 11 | Possible variants of the role assigned to a user within an organization. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/postAttachmentMimeType/variables/graphqlMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: graphqlMimeTypeEnum 6 | 7 | > `const` **graphqlMimeTypeEnum**: `string`[] 8 | 9 | Defined in: src/drizzle/enums/postAttachmentMimeType.ts:21 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/postAttachmentMimeType/variables/postAttachmentMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postAttachmentMimeTypeEnum 6 | 7 | > `const` **postAttachmentMimeTypeEnum**: `ZodEnum`\<\[`"image/avif"`, `"image/jpeg"`, `"image/png"`, `"image/webp"`, `"video/mp4"`, `"video/webm"`\]\> 8 | 9 | Defined in: src/drizzle/enums/postAttachmentMimeType.ts:12 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/postVoteType/variables/postVoteTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postVoteTypeEnum 6 | 7 | > `const` **postVoteTypeEnum**: `ZodEnum`\<\[`"down_vote"`, `"up_vote"`\]\> 8 | 9 | Defined in: src/drizzle/enums/postVoteType.ts:6 10 | 11 | Possible variants of the type of a vote on a post. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/userEmploymentStatus/variables/userEmploymentStatusEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userEmploymentStatusEnum 6 | 7 | > `const` **userEmploymentStatusEnum**: `ZodEnum`\<\[`"full_time"`, `"part_time"`, `"unemployed"`\]\> 8 | 9 | Defined in: src/drizzle/enums/userEmploymentStatus.ts:6 10 | 11 | Possible variants of the employment status(if applicable) of a user. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/userMaritalStatus/variables/userMaritalStatusEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userMaritalStatusEnum 6 | 7 | > `const` **userMaritalStatusEnum**: `ZodEnum`\<\[`"divorced"`, `"engaged"`, `"married"`, `"seperated"`, `"single"`, `"widowed"`\]\> 8 | 9 | Defined in: src/drizzle/enums/userMaritalStatus.ts:6 10 | 11 | Possible variants of the martial status(if applicable) of a user. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/userNatalSex/variables/userNatalSexEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userNatalSexEnum 6 | 7 | > `const` **userNatalSexEnum**: `ZodEnum`\<\[`"female"`, `"intersex"`, `"male"`\]\> 8 | 9 | Defined in: src/drizzle/enums/userNatalSex.ts:6 10 | 11 | Possible variants of the sex assigned to a user at birth. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/userRole/variables/userRoleEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userRoleEnum 6 | 7 | > `const` **userRoleEnum**: `ZodEnum`\<\[`"administrator"`, `"regular"`\]\> 8 | 9 | Defined in: src/drizzle/enums/userRole.ts:6 10 | 11 | Possible variants of the role assigned to a user. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/venueAttachmentMimeType/variables/venueAttachmentMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueAttachmentMimeTypeEnum 6 | 7 | > `const` **venueAttachmentMimeTypeEnum**: `ZodEnum`\<\[`"image/avif"`, `"image/jpeg"`, `"image/png"`, `"image/webp"`, `"video/mp4"`, `"video/webm"`\]\> 8 | 9 | Defined in: src/drizzle/enums/venueAttachmentMimeType.ts:8 10 | 11 | Possible variants of the type of an attachement of an event venue. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/videoMimeType/variables/videoMimeTypeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: videoMimeTypeEnum 6 | 7 | > `const` **videoMimeTypeEnum**: `ZodEnum`\<\[`"video/mp4"`, `"video/webm"`\]\> 8 | 9 | Defined in: src/drizzle/enums/videoMimeType.ts:6 10 | 11 | Possible variants of the type of a video. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/enums/volunteerGroupAssignmentInviteStatus/variables/volunteerGroupAssignmentInviteStatusEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: volunteerGroupAssignmentInviteStatusEnum 6 | 7 | > `const` **volunteerGroupAssignmentInviteStatusEnum**: `ZodEnum`\<\[`"accepted"`, `"declined"`, `"no_response"`\]\> 8 | 9 | Defined in: src/drizzle/enums/volunteerGroupAssignmentInviteStatus.ts:6 10 | 11 | Possible variants of the status of the assignment of a user in an event's volunteer group. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/actionCategories/variables/actionCategoriesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: actionCategoriesTable 6 | 7 | > `const` **actionCategoriesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/actionCategories.ts:16 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/actionCategories/variables/actionCategoriesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: actionCategoriesTableRelations 6 | 7 | > `const` **actionCategoriesTableRelations**: `Relations`\<`"action_categories"`, \{ `actionsWhereCategory`: `Many`\<`"actions"`\>; `creator`: `One`\<`"users"`, `false`\>; `organization`: `One`\<`"organizations"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/actionCategories.ts:68 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/actions/variables/actionsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: actionsTable 6 | 7 | > `const` **actionsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/actions.ts:17 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/advertisementAttachments/variables/advertisementAttachmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementAttachmentsTable 6 | 7 | > `const` **advertisementAttachmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/advertisementAttachments.ts:11 10 | 11 | Drizzle orm postgres table definition for advertisement attachments. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/advertisementAttachments/variables/advertisementAttachmentsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementAttachmentsTableRelations 6 | 7 | > `const` **advertisementAttachmentsTableRelations**: `Relations`\<`"advertisement_attachments"`, \{ `advertisement`: `One`\<`"advertisements"`, `true`\>; `creator`: `One`\<`"users"`, `false`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/advertisementAttachments.ts:75 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/advertisements/variables/advertisementsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementsTable 6 | 7 | > `const` **advertisementsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/advertisements.ts:20 10 | 11 | Drizzle orm postgres table definition for advertisements. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/advertisements/variables/advertisementsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: advertisementsTableRelations 6 | 7 | > `const` **advertisementsTableRelations**: `Relations`\<`"advertisements"`, \{ `attachmentsWhereAdvertisement`: `Many`\<`"advertisement_attachments"`\>; `creator`: `One`\<`"users"`, `false`\>; `organization`: `One`\<`"organizations"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/advertisements.ts:111 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/agendaFolders/variables/agendaFoldersTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: agendaFoldersTable 6 | 7 | > `const` **agendaFoldersTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/agendaFolders.ts:20 10 | 11 | Drizzle orm postgres table definition for agenda folders. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/agendaItems/variables/agendaItemsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: agendaItemsTable 6 | 7 | > `const` **agendaItemsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/agendaItems.ts:12 10 | 11 | Drizzle orm postgres table definition for agenda items. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/agendaItems/variables/agendaItemsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: agendaItemsTableRelations 6 | 7 | > `const` **agendaItemsTableRelations**: `Relations`\<`"agenda_items"`, \{ `creator`: `One`\<`"users"`, `false`\>; `folder`: `One`\<`"agenda_folders"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/agendaItems.ts:94 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/blockedUsers/variables/blockedUsersTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: blockedUsersTable 6 | 7 | > `const` **blockedUsersTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/blockedUsers.ts:14 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/blockedUsers/variables/blockedUsersTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: blockedUsersTableRelations 6 | 7 | > `const` **blockedUsersTableRelations**: `Relations`\<`"blocked_users"`, \{ `organization`: `One`\<`"organizations"`, `true`\>; `user`: `One`\<`"users"`, `true`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/blockedUsers.ts:42 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/chatMemberships/variables/chatMembershipsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMembershipsTable 6 | 7 | > `const` **chatMembershipsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/chatMemberships.ts:18 10 | 11 | Drizzle orm postgres table definition for chat memberships. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/chatMemberships/variables/chatMembershipsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMembershipsTableRelations 6 | 7 | > `const` **chatMembershipsTableRelations**: `Relations`\<`"chat_memberships"`, \{ `chat`: `One`\<`"chats"`, `true`\>; `creator`: `One`\<`"users"`, `false`\>; `member`: `One`\<`"users"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/chatMemberships.ts:92 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/chatMessages/variables/chatMessagesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMessagesTable 6 | 7 | > `const` **chatMessagesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/chatMessages.ts:18 10 | 11 | Drizzle orm postgres table definition for chat messages. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/chatMessages/variables/chatMessagesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatMessagesTableRelations 6 | 7 | > `const` **chatMessagesTableRelations**: `Relations`\<`"chat_messages"`, \{ `chat`: `One`\<`"chats"`, `true`\>; `chatMessagesWhereParentMessage`: `Many`\<`"chat_messages"`\>; `creator`: `One`\<`"users"`, `false`\>; `parentMessage`: `One`\<`"chat_messages"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/chatMessages.ts:84 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/chats/variables/chatsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatsTable 6 | 7 | > `const` **chatsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/chats.ts:14 10 | 11 | Drizzle orm postgres table definition for chats. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/chats/variables/chatsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: chatsTableRelations 6 | 7 | > `const` **chatsTableRelations**: `Relations`\<`"chats"`, \{ `chatMembershipsWhereChat`: `Many`\<`"chat_memberships"`\>; `chatMessagesWhereChat`: `Many`\<`"chat_messages"`\>; `creator`: `One`\<`"users"`, `false`\>; `organization`: `One`\<`"organizations"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/chats.ts:91 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/commentVotes/variables/commentVotesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentVotesTable 6 | 7 | > `const` **commentVotesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/commentVotes.ts:19 10 | 11 | Drizzle orm postgres table definition for comment votes. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/commentVotes/variables/commentVotesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentVotesTableRelations 6 | 7 | > `const` **commentVotesTableRelations**: `Relations`\<`"comment_votes"`, \{ `comment`: `One`\<`"comments"`, `true`\>; `creator`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/commentVotes.ts:77 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/comments/variables/commentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentsTable 6 | 7 | > `const` **commentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/comments.ts:12 10 | 11 | Drizzle orm postgres table definition for comments. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/comments/variables/commentsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: commentsTableRelations 6 | 7 | > `const` **commentsTableRelations**: `Relations`\<`"comments"`, \{ `creator`: `One`\<`"users"`, `false`\>; `post`: `One`\<`"posts"`, `true`\>; `votesWhereComment`: `Many`\<`"comment_votes"`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/comments.ts:67 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/communities/variables/communitiesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: communitiesTable 6 | 7 | > `const` **communitiesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/communities.ts:11 10 | 11 | Drizzle orm postgres table definition for a community. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/communities/variables/communitiesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: communitiesTableRelations 6 | 7 | > `const` **communitiesTableRelations**: `Relations`\<`"communities"`, \{ `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/communities.ts:99 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/eventAttachments/variables/eventAttachmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventAttachmentsTable 6 | 7 | > `const` **eventAttachmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/eventAttachments.ts:11 10 | 11 | Drizzle orm postgres table definition for event attachments. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/eventAttachments/variables/eventAttachmentsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventAttachmentsTableRelations 6 | 7 | > `const` **eventAttachmentsTableRelations**: `Relations`\<`"event_attachments"`, \{ `creator`: `One`\<`"users"`, `false`\>; `event`: `One`\<`"events"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/eventAttachments.ts:75 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/eventAttendances/variables/eventAttendancesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventAttendancesTable 6 | 7 | > `const` **eventAttendancesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/eventAttendances.ts:9 10 | 11 | Drizzle orm postgres table definition for event attendances. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/eventAttendances/variables/eventAttendancesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventAttendancesTableRelations 6 | 7 | > `const` **eventAttendancesTableRelations**: `Relations`\<`"event_attendances"`, \{ `attendee`: `One`\<`"users"`, `true`\>; `creator`: `One`\<`"users"`, `false`\>; `event`: `One`\<`"events"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/eventAttendances.ts:91 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/events/variables/eventsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: eventsTable 6 | 7 | > `const` **eventsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/events.ts:15 10 | 11 | Drizzle orm postgres table definition for events. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/families/variables/familiesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: familiesTable 6 | 7 | > `const` **familiesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/families.ts:15 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/families/variables/familiesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: familiesTableRelations 6 | 7 | > `const` **familiesTableRelations**: `Relations`\<`"families"`, \{ `creator`: `One`\<`"users"`, `false`\>; `familyMembershipsWhereFamily`: `Many`\<`"family_memberships"`\>; `organization`: `One`\<`"organizations"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/families.ts:64 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/familyMemberships/variables/familyMembershipsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: familyMembershipsTable 6 | 7 | > `const` **familyMembershipsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/familyMemberships.ts:14 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/familyMemberships/variables/familyMembershipsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: familyMembershipsTableRelations 6 | 7 | > `const` **familyMembershipsTableRelations**: `Relations`\<`"family_memberships"`, \{ `creator`: `One`\<`"users"`, `false`\>; `family`: `One`\<`"families"`, `true`\>; `member`: `One`\<`"users"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/familyMemberships.ts:72 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/fundCampaignPledges/variables/fundCampaignPledgesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundCampaignPledgesTable 6 | 7 | > `const` **fundCampaignPledgesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/fundCampaignPledges.ts:19 10 | 11 | Drizzle orm postgres table definition for fund campaign pledges. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/fundCampaignPledges/variables/fundCampaignPledgesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundCampaignPledgesTableRelations 6 | 7 | > `const` **fundCampaignPledgesTableRelations**: `Relations`\<`"fund_campaign_pledges"`, \{ `campaign`: `One`\<`"fund_campaigns"`, `true`\>; `creator`: `One`\<`"users"`, `false`\>; `pledger`: `One`\<`"users"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/fundCampaignPledges.ts:96 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/fundCampaigns/variables/fundCampaignsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundCampaignsTable 6 | 7 | > `const` **fundCampaignsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/fundCampaigns.ts:21 10 | 11 | Drizzle orm postgres table definition for fund campaigns. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/fundCampaigns/variables/fundCampaignsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundCampaignsTableRelations 6 | 7 | > `const` **fundCampaignsTableRelations**: `Relations`\<`"fund_campaigns"`, \{ `creator`: `One`\<`"users"`, `false`\>; `fund`: `One`\<`"funds"`, `true`\>; `fundCampaignPledgesWhereCampaign`: `Many`\<`"fund_campaign_pledges"`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/fundCampaigns.ts:113 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/funds/variables/fundsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundsTable 6 | 7 | > `const` **fundsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/funds.ts:20 10 | 11 | Drizzle orm postgres table definition for funds. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/funds/variables/fundsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fundsTableRelations 6 | 7 | > `const` **fundsTableRelations**: `Relations`\<`"funds"`, \{ `creator`: `One`\<`"users"`, `false`\>; `fundCampaignsWhereFund`: `Many`\<`"fund_campaigns"`\>; `organization`: `One`\<`"organizations"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/funds.ts:88 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/membershipRequests/variables/membershipRequestsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: membershipRequestsTable 6 | 7 | > `const` **membershipRequestsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/membershipRequests.ts:20 10 | 11 | Drizzle ORM PostgreSQL table definition for membership requests. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/organizationMemberships/variables/organizationMembershipsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: organizationMembershipsTable 6 | 7 | > `const` **organizationMembershipsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/organizationMemberships.ts:18 10 | 11 | Drizzle orm postgres table definition for organization memberships. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/organizations/variables/organizationsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: organizationsTable 6 | 7 | > `const` **organizationsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/organizations.ts:31 10 | 11 | Drizzle orm postgres table definition for organizations. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/postAttachments/variables/postAttachmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postAttachmentsTable 6 | 7 | > `const` **postAttachmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/postAttachments.ts:11 10 | 11 | Drizzle orm postgres table definition for post attachments. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/postAttachments/variables/postAttachmentsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postAttachmentsTableRelations 6 | 7 | > `const` **postAttachmentsTableRelations**: `Relations`\<`"post_attachments"`, \{ `creator`: `One`\<`"users"`, `false`\>; `post`: `One`\<`"posts"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/postAttachments.ts:93 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/postVotes/variables/postVotesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postVotesTable 6 | 7 | > `const` **postVotesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/postVotes.ts:19 10 | 11 | Drizzle orm postgres table definition for post votes. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/postVotes/variables/postVotesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postVotesTableRelations 6 | 7 | > `const` **postVotesTableRelations**: `Relations`\<`"post_votes"`, \{ `creator`: `One`\<`"users"`, `false`\>; `post`: `One`\<`"posts"`, `true`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/postVotes.ts:77 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/posts/variables/postsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: postsTable 6 | 7 | > `const` **postsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/posts.ts:14 10 | 11 | Drizzle orm postgres table definition for posts. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/tagAssignments/variables/tagAssignmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: tagAssignmentsTable 6 | 7 | > `const` **tagAssignmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/tagAssignments.ts:16 10 | 11 | Drizzle orm postgres table definition for tag assignments. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/tagAssignments/variables/tagAssignmentsTableInsertSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: tagAssignmentsTableInsertSchema 6 | 7 | > `const` **tagAssignmentsTableInsertSchema**: `BuildSchema`\<`"insert"`, \{ `assigneeId`: `PgColumn`\<\{\}, \{\}, \{\}\>; `createdAt`: `PgColumn`\<\{\}, \{\}, \{\}\>; `creatorId`: `PgColumn`\<\{\}, \{\}, \{\}\>; `tagId`: `PgColumn`\<\{\}, \{\}, \{\}\>; \}, `undefined`\> 8 | 9 | Defined in: src/drizzle/tables/tagAssignments.ts:96 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/tagAssignments/variables/tagAssignmentsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: tagAssignmentsTableRelations 6 | 7 | > `const` **tagAssignmentsTableRelations**: `Relations`\<`"tag_assignments"`, \{ `assignee`: `One`\<`"users"`, `true`\>; `creator`: `One`\<`"users"`, `false`\>; `tag`: `One`\<`"tags"`, `true`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/tagAssignments.ts:66 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/tagFolders/variables/tagFoldersTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: tagFoldersTable 6 | 7 | > `const` **tagFoldersTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/tagFolders.ts:19 10 | 11 | Drizzle orm postgres table definition for tag folders. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/users/variables/usersTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: usersTable 6 | 7 | > `const` **usersTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/users.ts:59 10 | 11 | Drizzle orm postgres table definition for users. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/venueAttachments/variables/venueAttachmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueAttachmentsTable 6 | 7 | > `const` **venueAttachmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/venueAttachments.ts:11 10 | 11 | Drizzle orm postgres table definition for venue attachments. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/venueAttachments/variables/venueAttachmentsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueAttachmentsTableRelations 6 | 7 | > `const` **venueAttachmentsTableRelations**: `Relations`\<`"venue_attachments"`, \{ `creator`: `One`\<`"users"`, `false`\>; `updater`: `One`\<`"users"`, `false`\>; `venue`: `One`\<`"venues"`, `true`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/venueAttachments.ts:75 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/venueBookings/variables/venueBookingsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueBookingsTable 6 | 7 | > `const` **venueBookingsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/venueBookings.ts:17 10 | 11 | Drizzle orm postgres table definition for venue bookings. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/venueBookings/variables/venueBookingsTableInsertSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueBookingsTableInsertSchema 6 | 7 | > `const` **venueBookingsTableInsertSchema**: `BuildSchema`\<`"insert"`, \{ `createdAt`: `PgColumn`\<\{\}, \{\}, \{\}\>; `creatorId`: `PgColumn`\<\{\}, \{\}, \{\}\>; `eventId`: `PgColumn`\<\{\}, \{\}, \{\}\>; `venueId`: `PgColumn`\<\{\}, \{\}, \{\}\>; \}, `undefined`\> 8 | 9 | Defined in: src/drizzle/tables/venueBookings.ts:97 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/venueBookings/variables/venueBookingsTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venueBookingsTableRelations 6 | 7 | > `const` **venueBookingsTableRelations**: `Relations`\<`"venue_bookings"`, \{ `creator`: `One`\<`"users"`, `false`\>; `event`: `One`\<`"events"`, `true`\>; `venue`: `One`\<`"venues"`, `true`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/venueBookings.ts:67 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/venues/variables/venuesTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venuesTable 6 | 7 | > `const` **venuesTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/venues.ts:20 10 | 11 | Drizzle orm postgres table definition for venues. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/venues/variables/venuesTableRelations.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: venuesTableRelations 6 | 7 | > `const` **venuesTableRelations**: `Relations`\<`"venues"`, \{ `attachmentsWhereVenue`: `Many`\<`"venue_attachments"`\>; `creator`: `One`\<`"users"`, `false`\>; `organization`: `One`\<`"organizations"`, `true`\>; `updater`: `One`\<`"users"`, `false`\>; `venueBookingsWhereVenue`: `Many`\<`"venue_bookings"`\>; \}\> 8 | 9 | Defined in: src/drizzle/tables/venues.ts:88 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/volunteerGroupAssignments/variables/volunteerGroupAssignmentsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: volunteerGroupAssignmentsTable 6 | 7 | > `const` **volunteerGroupAssignmentsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/volunteerGroupAssignments.ts:14 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/drizzle/tables/volunteerGroups/variables/volunteerGroupsTable.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: volunteerGroupsTable 6 | 7 | > `const` **volunteerGroupsTable**: `PgTableWithColumns`\<\{\}\> 8 | 9 | Defined in: src/drizzle/tables/volunteerGroups.ts:16 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/envConfigSchema/type-aliases/EnvConfig.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EnvConfig 6 | 7 | > **EnvConfig**: `Static`\<*typeof* [`envConfigSchema`](../variables/envConfigSchema.md)\> 8 | 9 | Defined in: src/envConfigSchema.ts:293 10 | 11 | Type of the object containing parsed configuration environment variables. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/builder/variables/builder.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: builder 6 | 7 | > `const` **builder**: `SchemaBuilder`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../scalars/type-aliases/CustomScalars.md); \}\>\> 8 | 9 | Defined in: src/graphql/builder.ts:10 10 | 11 | This is the pothos schema builder used for talawa api's code first graphql implementation. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/context/type-aliases/CurrentClient.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: CurrentClient 6 | 7 | > **CurrentClient**: `object` & `{ [K in keyof ExplicitAuthenticationTokenPayload]?: never }` \| `object` & [`ExplicitAuthenticationTokenPayload`](ExplicitAuthenticationTokenPayload.md) 8 | 9 | Defined in: src/graphql/context.ts:22 10 | 11 | Type of the client-specific context for a grahphql operation client. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/context/type-aliases/ExplicitAuthenticationTokenPayload.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: ExplicitAuthenticationTokenPayload 6 | 7 | > **ExplicitAuthenticationTokenPayload**: `object` 8 | 9 | Defined in: src/graphql/context.ts:15 10 | 11 | Type of the payload encoded into or decoded from the authentication json web token. 12 | 13 | ## Type declaration 14 | 15 | ### user 16 | 17 | > **user**: `Pick`\<*typeof* `usersTable.$inferSelect`, `"id"`\> 18 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/context/type-aliases/GraphQLContext.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: GraphQLContext 6 | 7 | > **GraphQLContext**: [`ExplicitGraphQLContext`](ExplicitGraphQLContext.md) & [`ImplicitMercuriusContext`](ImplicitMercuriusContext.md) 8 | 9 | Defined in: src/graphql/context.ts:55 10 | 11 | Type of the transport protocol agnostic context object passed to the graphql resolvers each time they resolve a graphql operation at runtime. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/enums/CommentVoteType/variables/CommentVoteType.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CommentVoteType 6 | 7 | > `const` **CommentVoteType**: `EnumRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `"down_vote"` \| `"up_vote"`, `"down_vote"` \| `"up_vote"`\> 8 | 9 | Defined in: src/graphql/enums/CommentVoteType.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/enums/PostVoteType/variables/PostVoteType.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: PostVoteType 6 | 7 | > `const` **PostVoteType**: `EnumRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `"down_vote"` \| `"up_vote"`, `"down_vote"` \| `"up_vote"`\> 8 | 9 | Defined in: src/graphql/enums/PostVoteType.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/enums/UserNatalSex/variables/UserNatalSex.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UserNatalSex 6 | 7 | > `const` **UserNatalSex**: `EnumRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `"female"` \| `"intersex"` \| `"male"`, `"female"` \| `"intersex"` \| `"male"`\> 8 | 9 | Defined in: src/graphql/enums/UserNatalSex.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/enums/UserRole/variables/UserRole.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UserRole 6 | 7 | > `const` **UserRole**: `EnumRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `"administrator"` \| `"regular"`, `"administrator"` \| `"regular"`\> 8 | 9 | Defined in: src/graphql/enums/UserRole.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationAcceptMembershipRequestInput/variables/acceptMembershipRequestInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: acceptMembershipRequestInputSchema 6 | 7 | > `const` **acceptMembershipRequestInputSchema**: `ZodObject`\<\{ `membershipRequestId`: `ZodString`; \}, `"strip"`, `ZodTypeAny`, \{ `membershipRequestId`: `string`; \}, \{ `membershipRequestId`: `string`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationAcceptMembershipRequestInput.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationBlockUserInput/variables/MutationBlockUserInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationBlockUserInput 6 | 7 | > `const` **MutationBlockUserInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationBlockUserInput.ts:18 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationBlockUserInput/variables/mutationBlockUserInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationBlockUserInputSchema 6 | 7 | > `const` **mutationBlockUserInputSchema**: `ZodEffects`\<`ZodObject`\<`Pick`\<\{\}, `any`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\>, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationBlockUserInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationCancelMembershipRequestInput/variables/cancelMembershipRequestInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: cancelMembershipRequestInputSchema 6 | 7 | > `const` **cancelMembershipRequestInputSchema**: `ZodObject`\<\{ `membershipRequestId`: `ZodString`; \}, `"strip"`, `ZodTypeAny`, \{ `membershipRequestId`: `string`; \}, \{ `membershipRequestId`: `string`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationCancelMembershipRequestInput.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationCreateCommentVoteInput/variables/mutationCreateCommentVoteInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationCreateCommentVoteInputSchema 6 | 7 | > `const` **mutationCreateCommentVoteInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationCreateCommentVoteInput.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationCreateFundInput/variables/MutationCreateFundInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationCreateFundInput 6 | 7 | > `const` **MutationCreateFundInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, \{ `name`: `object`[]; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationCreateFundInput.ts:11 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePostVoteInput/variables/MutationCreatePostVoteInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationCreatePostVoteInput 6 | 7 | > `const` **MutationCreatePostVoteInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationCreatePostVoteInput.ts:12 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePostVoteInput/variables/mutationCreatePostVoteInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationCreatePostVoteInputSchema 6 | 7 | > `const` **mutationCreatePostVoteInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationCreatePostVoteInput.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationCreateTagInput/variables/MutationCreateTagInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationCreateTagInput 6 | 7 | > `const` **MutationCreateTagInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, \{ `name`: `object`[]; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationCreateTagInput.ts:11 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationCreateVenueBookingInput/variables/mutationCreateVenueBookingInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationCreateVenueBookingInputSchema 6 | 7 | > `const` **mutationCreateVenueBookingInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationCreateVenueBookingInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteActionItemInput/variables/mutationDeleteActionItemInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteActionItemInputSchema 6 | 7 | > `const` **mutationDeleteActionItemInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteActionItemInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAdvertisementInput/variables/mutationDeleteAdvertisementInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteAdvertisementInputSchema 6 | 7 | > `const` **mutationDeleteAdvertisementInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteAdvertisementInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAgendaFolderInput/variables/mutationDeleteAgendaFolderInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteAgendaFolderInputSchema 6 | 7 | > `const` **mutationDeleteAgendaFolderInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteAgendaFolderInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAgendaItemInput/variables/MutationDeleteAgendaItemInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteAgendaItemInputSchema 6 | 7 | > `const` **MutationDeleteAgendaItemInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteAgendaItemInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatInput/variables/MutationDeleteChatInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteChatInput 6 | 7 | > `const` **MutationDeleteChatInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteChatInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatInput/variables/mutationDeleteChatInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteChatInputSchema 6 | 7 | > `const` **mutationDeleteChatInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteChatInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatMembershipInput/variables/mutationDeleteChatMembershipInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteChatMembershipInputSchema 6 | 7 | > `const` **mutationDeleteChatMembershipInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteChatMembershipInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatMessageInput/variables/mutationDeleteChatMessageInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteChatMessageInputSchema 6 | 7 | > `const` **mutationDeleteChatMessageInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteChatMessageInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteCommentInput/variables/MutationDeleteCommentInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteCommentInput 6 | 7 | > `const` **MutationDeleteCommentInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteCommentInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteCommentInput/variables/mutationDeleteCommentInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteCommentInputSchema 6 | 7 | > `const` **mutationDeleteCommentInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteCommentInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteEventInput/variables/MutationDeleteEventInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteEventInput 6 | 7 | > `const` **MutationDeleteEventInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteEventInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteEventInput/variables/mutationDeleteEventInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteEventInputSchema 6 | 7 | > `const` **mutationDeleteEventInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteEventInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundCampaignInput/variables/mutationDeleteFundCampaignInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteFundCampaignInputSchema 6 | 7 | > `const` **mutationDeleteFundCampaignInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteFundCampaignInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundInput/variables/MutationDeleteFundInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteFundInput 6 | 7 | > `const` **MutationDeleteFundInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteFundInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundInput/variables/mutationDeleteFundInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteFundInputSchema 6 | 7 | > `const` **mutationDeleteFundInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteFundInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteOrganizationInput/variables/mutationDeleteOrganizationInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteOrganizationInputSchema 6 | 7 | > `const` **mutationDeleteOrganizationInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteOrganizationInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteOrganizationMembershipInput/variables/mutationDeleteOrganizationMembershipInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteOrganizationMembershipInputSchema 6 | 7 | > `const` **mutationDeleteOrganizationMembershipInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteOrganizationMembershipInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeletePostInput/variables/MutationDeletePostInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeletePostInput 6 | 7 | > `const` **MutationDeletePostInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeletePostInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeletePostInput/variables/mutationDeletePostInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeletePostInputSchema 6 | 7 | > `const` **mutationDeletePostInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeletePostInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeletePostVoteInput/variables/MutationDeletePostVoteInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeletePostVoteInput 6 | 7 | > `const` **MutationDeletePostVoteInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeletePostVoteInput.ts:13 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagFolderInput/variables/MutationDeleteTagFolderInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteTagFolderInput 6 | 7 | > `const` **MutationDeleteTagFolderInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteTagFolderInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagFolderInput/variables/mutationDeleteTagFolderInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteTagFolderInputSchema 6 | 7 | > `const` **mutationDeleteTagFolderInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteTagFolderInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagInput/variables/MutationDeleteTagInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteTagInput 6 | 7 | > `const` **MutationDeleteTagInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteTagInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagInput/variables/mutationDeleteTagInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteTagInputSchema 6 | 7 | > `const` **mutationDeleteTagInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteTagInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteUserInput/variables/MutationDeleteUserInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteUserInput 6 | 7 | > `const` **MutationDeleteUserInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteUserInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteUserInput/variables/mutationDeleteUserInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteUserInputSchema 6 | 7 | > `const` **mutationDeleteUserInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteUserInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteVenueBookingInput/variables/mutationDeleteVenueBookingInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteVenueBookingInputSchema 6 | 7 | > `const` **mutationDeleteVenueBookingInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteVenueBookingInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteVenueInput/variables/MutationDeleteVenueInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationDeleteVenueInput 6 | 7 | > `const` **MutationDeleteVenueInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteVenueInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteVenueInput/variables/mutationDeleteVenueInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationDeleteVenueInputSchema 6 | 7 | > `const` **mutationDeleteVenueInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationDeleteVenueInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationJoinPublicOrganizationInput/variables/joinPublicOrganizationInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: joinPublicOrganizationInputSchema 6 | 7 | > `const` **joinPublicOrganizationInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationJoinPublicOrganizationInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationRejectMembershipRequestInput/variables/rejectMembershipRequestInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: rejectMembershipRequestInputSchema 6 | 7 | > `const` **rejectMembershipRequestInputSchema**: `ZodObject`\<\{ `membershipRequestId`: `ZodString`; \}, `"strip"`, `ZodTypeAny`, \{ `membershipRequestId`: `string`; \}, \{ `membershipRequestId`: `string`; \}\> 8 | 9 | Defined in: src/graphql/inputs/MutationRejectMembershipRequestInput.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationSendMembershipRequestInput/variables/sendMembershipRequestInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: sendMembershipRequestInputSchema 6 | 7 | > `const` **sendMembershipRequestInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationSendMembershipRequestInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUnblockUserInput/variables/MutationUnblockUserInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUnblockUserInput 6 | 7 | > `const` **MutationUnblockUserInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUnblockUserInput.ts:18 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUnblockUserInput/variables/mutationUnblockUserInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationUnblockUserInputSchema 6 | 7 | > `const` **mutationUnblockUserInputSchema**: `ZodEffects`\<`ZodObject`\<`Pick`\<\{\}, `any`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\>, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationUnblockUserInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatInput/variables/MutationUpdateChatInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateChatInput 6 | 7 | > `const` **MutationUpdateChatInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateChatInput.ts:22 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatMembershipInput/variables/mutationUpdateChatMembershipInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationUpdateChatMembershipInputSchema 6 | 7 | > `const` **mutationUpdateChatMembershipInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateChatMembershipInput.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommentInput/variables/MutationUpdateCommentInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateCommentInput 6 | 7 | > `const` **MutationUpdateCommentInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateCommentInput.ts:18 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommentVoteInput/variables/mutationUpdateCommentVoteInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationUpdateCommentVoteInputSchema 6 | 7 | > `const` **mutationUpdateCommentVoteInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateCommentVoteInput.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateEventInput/variables/MutationUpdateEventInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateEventInput 6 | 7 | > `const` **MutationUpdateEventInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateEventInput.ts:35 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateFundInput/variables/MutationUpdateFundInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateFundInput 6 | 7 | > `const` **MutationUpdateFundInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateFundInput.ts:18 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdatePostVoteInput/variables/MutationUpdatePostVoteInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdatePostVoteInput 6 | 7 | > `const` **MutationUpdatePostVoteInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdatePostVoteInput.ts:12 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdatePostVoteInput/variables/mutationUpdatePostVoteInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mutationUpdatePostVoteInputSchema 6 | 7 | > `const` **mutationUpdatePostVoteInputSchema**: `ZodObject`\<`Pick`\<\{\}, `never`\>, `"strip"`, `ZodTypeAny`, \{\}, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdatePostVoteInput.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateTagFolderInput/variables/MutationUpdateTagFolderInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateTagFolderInput 6 | 7 | > `const` **MutationUpdateTagFolderInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateTagFolderInput.ts:21 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateTagInput/variables/MutationUpdateTagInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateTagInput 6 | 7 | > `const` **MutationUpdateTagInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateTagInput.ts:21 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateUserInput/variables/MutationUpdateUserInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateUserInput 6 | 7 | > `const` **MutationUpdateUserInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateUserInput.ts:44 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateVenueInput/variables/MutationUpdateVenueInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MutationUpdateVenueInput 6 | 7 | > `const` **MutationUpdateVenueInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/MutationUpdateVenueInput.ts:21 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryAdvertisementInput/variables/QueryAdvertisementInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryAdvertisementInput 6 | 7 | > `const` **QueryAdvertisementInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryAdvertisementInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryAdvertisementInput/variables/queryAdvertisementInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryAdvertisementInputSchema 6 | 7 | > `const` **queryAdvertisementInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryAdvertisementInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaFolderInput/variables/QueryAgendaFolderInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryAgendaFolderInput 6 | 7 | > `const` **QueryAgendaFolderInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryAgendaFolderInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaFolderInput/variables/queryAgendaFolderInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryAgendaFolderInputSchema 6 | 7 | > `const` **queryAgendaFolderInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryAgendaFolderInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaItemInput/variables/QueryAgendaItemInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryAgendaItemInput 6 | 7 | > `const` **QueryAgendaItemInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryAgendaItemInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaItemInput/variables/queryAgendaItemInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryAgendaItemInputSchema 6 | 7 | > `const` **queryAgendaItemInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryAgendaItemInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryChatInput/variables/QueryChatInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryChatInput 6 | 7 | > `const` **QueryChatInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryChatInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryChatInput/variables/queryChatInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryChatInputSchema 6 | 7 | > `const` **queryChatInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryChatInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryChatMessageInput/variables/QueryChatMessageInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryChatMessageInput 6 | 7 | > `const` **QueryChatMessageInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryChatMessageInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryChatMessageInput/variables/queryChatMessageInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryChatMessageInputSchema 6 | 7 | > `const` **queryChatMessageInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryChatMessageInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryCommentInput/variables/QueryCommentInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryCommentInput 6 | 7 | > `const` **QueryCommentInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryCommentInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryCommentInput/variables/queryCommentInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryCommentInputSchema 6 | 7 | > `const` **queryCommentInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryCommentInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryEventInput/variables/QueryEventInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryEventInput 6 | 7 | > `const` **QueryEventInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryEventInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryEventInput/variables/queryEventInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryEventInputSchema 6 | 7 | > `const` **queryEventInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryEventInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignInput/variables/QueryFundCampaignInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryFundCampaignInput 6 | 7 | > `const` **QueryFundCampaignInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryFundCampaignInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignInput/variables/queryFundCampaignInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryFundCampaignInputSchema 6 | 7 | > `const` **queryFundCampaignInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryFundCampaignInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignPledgeInput/variables/QueryFundCampaignPledgeInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryFundCampaignPledgeInput 6 | 7 | > `const` **QueryFundCampaignPledgeInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryFundCampaignPledgeInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignPledgeInput/variables/queryFundCampaignPledgeInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryFundCampaignPledgeInputSchema 6 | 7 | > `const` **queryFundCampaignPledgeInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryFundCampaignPledgeInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryFundInput/variables/QueryFundInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryFundInput 6 | 7 | > `const` **QueryFundInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryFundInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryFundInput/variables/queryFundInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryFundInputSchema 6 | 7 | > `const` **queryFundInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryFundInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryOrganizationInput/variables/MembersWhereInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MembersWhereInput 6 | 7 | > `const` **MembersWhereInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, \{\}\> 8 | 9 | Defined in: src/graphql/inputs/QueryOrganizationInput.ts:50 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryOrganizationInput/variables/QueryOrganizationInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryOrganizationInput 6 | 7 | > `const` **QueryOrganizationInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryOrganizationInput.ts:17 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryOrganizationInput/variables/queryOrganizationInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryOrganizationInputSchema 6 | 7 | > `const` **queryOrganizationInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryOrganizationInput.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryPostInput/variables/QueryPostInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryPostInput 6 | 7 | > `const` **QueryPostInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryPostInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryPostInput/variables/queryPostInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryPostInputSchema 6 | 7 | > `const` **queryPostInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryPostInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QuerySignInInput/variables/QuerySignInInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QuerySignInInput 6 | 7 | > `const` **QuerySignInInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, \{ `emailAddress`: `any`; `password`: `string`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QuerySignInInput.ts:13 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryTagFolderInput/variables/QueryTagFolderInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryTagFolderInput 6 | 7 | > `const` **QueryTagFolderInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryTagFolderInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryTagFolderInput/variables/queryTagFolderInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryTagFolderInputSchema 6 | 7 | > `const` **queryTagFolderInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryTagFolderInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryTagInput/variables/QueryTagInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryTagInput 6 | 7 | > `const` **QueryTagInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryTagInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryTagInput/variables/queryTagInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryTagInputSchema 6 | 7 | > `const` **queryTagInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryTagInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryUserInput/variables/QueryUserInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryUserInput 6 | 7 | > `const` **QueryUserInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryUserInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryUserInput/variables/queryUserInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryUserInputSchema 6 | 7 | > `const` **queryUserInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryUserInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryVenueInput/variables/QueryVenueInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: QueryVenueInput 6 | 7 | > `const` **QueryVenueInput**: `InputObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../scalars/type-aliases/CustomScalars.md); \}\>, `any`\> 8 | 9 | Defined in: src/graphql/inputs/QueryVenueInput.ts:9 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/QueryVenueInput/variables/queryVenueInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: queryVenueInputSchema 6 | 7 | > `const` **queryVenueInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/QueryVenueInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/inputs/SubscriptionChatMessageCreateInput/variables/subscriptionChatMessageCreateInputSchema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: subscriptionChatMessageCreateInputSchema 6 | 7 | > `const` **subscriptionChatMessageCreateInputSchema**: `ZodObject`\<\{ `id`: `any`; \}, `"strip"`, `ZodTypeAny`, \{ `[key: string]`: `any`; `id`: `unknown`; \}, \{ `[key: string]`: `any`; `id`: `unknown`; \}\> 8 | 9 | Defined in: src/graphql/inputs/SubscriptionChatMessageCreateInput.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/scalars/BigInt/type-aliases/BigInt.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: \_BigInt 6 | 7 | > **\_BigInt**: `object` 8 | 9 | Defined in: src/graphql/scalars/BigInt.ts:12 10 | 11 | `BigInt` scalar type for pothos schema. 12 | 13 | ## Type declaration 14 | 15 | ### Input 16 | 17 | > **Input**: `bigint` 18 | 19 | ### Output 20 | 21 | > **Output**: `bigint` 22 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/scalars/Date/type-aliases/Date.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: \_Date 6 | 7 | > **\_Date**: `object` 8 | 9 | Defined in: src/graphql/scalars/Date.ts:12 10 | 11 | `Date` scalar type for pothos schema. 12 | 13 | ## Type declaration 14 | 15 | ### Input 16 | 17 | > **Input**: `Date` 18 | 19 | ### Output 20 | 21 | > **Output**: `Date` 22 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/scalars/DateTime/type-aliases/DateTime.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: DateTime 6 | 7 | > **DateTime**: `object` 8 | 9 | Defined in: src/graphql/scalars/DateTime.ts:12 10 | 11 | `DateTime` scalar type for pothos schema. 12 | 13 | ## Type declaration 14 | 15 | ### Input 16 | 17 | > **Input**: `Date` 18 | 19 | ### Output 20 | 21 | > **Output**: `Date` 22 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/scalars/PhoneNumber/type-aliases/PhoneNumber.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: PhoneNumber 6 | 7 | > **PhoneNumber**: `object` 8 | 9 | Defined in: src/graphql/scalars/PhoneNumber.ts:12 10 | 11 | `PhoneNumber` scalar type for pothos schema. 12 | 13 | ## Type declaration 14 | 15 | ### Input 16 | 17 | > **Input**: `string` 18 | 19 | ### Output 20 | 21 | > **Output**: `string` 22 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/scalars/Upload/type-aliases/Upload.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Upload 6 | 7 | > **Upload**: `object` 8 | 9 | Defined in: src/graphql/scalars/Upload.ts:17 10 | 11 | `Upload` scalar type for pothos schema. 12 | 13 | ## Type declaration 14 | 15 | ### Input 16 | 17 | > **Input**: `Promise`\<`FileUpload`\> 18 | 19 | ### Output 20 | 21 | > **Output**: `Promise`\<`FileUpload`\> 22 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/schema/variables/schema.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: schema 6 | 7 | > `const` **schema**: `GraphQLSchema` 8 | 9 | Defined in: src/graphql/schema.ts:12 10 | 11 | This is the executable graphql schema. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/ActionItem/ActionItem/type-aliases/ActionItem.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: ActionItem 6 | 7 | > **ActionItem**: *typeof* `actionsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/ActionItem/ActionItem.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/ActionItemCategory/ActionItemCategory/type-aliases/ActionItemCategory.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: ActionItemCategory 6 | 7 | > **ActionItemCategory**: `InferSelectModel`\<*typeof* [`actionCategoriesTable`](../../../../../drizzle/tables/actionCategories/variables/actionCategoriesTable.md)\> 8 | 9 | Defined in: src/graphql/types/ActionItemCategory/ActionItemCategory.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/AdvertisementAttachment/AdvertisementAttachment/type-aliases/AdvertisementAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AdvertisementAttachment 6 | 7 | > **AdvertisementAttachment**: *typeof* `advertisementAttachmentsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/AdvertisementAttachment/AdvertisementAttachment.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/AgendaFolder/AgendaFolder/type-aliases/AgendaFolder.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AgendaFolder 6 | 7 | > **AgendaFolder**: *typeof* `agendaFoldersTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/AgendaFolder/AgendaFolder.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/AgendaItem/AgendaItem/type-aliases/AgendaItem.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AgendaItem 6 | 7 | > **AgendaItem**: *typeof* `agendaItemsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/AgendaItem/AgendaItem.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/AuthenticationPayload/type-aliases/AuthenticationPayload.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AuthenticationPayload 6 | 7 | > **AuthenticationPayload**: `object` 8 | 9 | Defined in: src/graphql/types/AuthenticationPayload.ts:5 10 | 11 | ## Type declaration 12 | 13 | ### authenticationToken 14 | 15 | > **authenticationToken**: `string` 16 | 17 | ### user 18 | 19 | > **user**: [`User`](../../User/User/type-aliases/User.md) 20 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Chat/Chat/type-aliases/Chat.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Chat 6 | 7 | > **Chat**: *typeof* `chatsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/Chat/Chat.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/ChatMessage/ChatMessage/type-aliases/ChatMessage.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: ChatMessage 6 | 7 | > **ChatMessage**: *typeof* `chatMessagesTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/ChatMessage/ChatMessage.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Comment/Comment/type-aliases/Comment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Comment 6 | 7 | > **Comment**: *typeof* `commentsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/Comment/Comment.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Community/Community/type-aliases/Community.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Community 6 | 7 | > **Community**: *typeof* `communitiesTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/Community/Community.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Event/Event/type-aliases/Event.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Event 6 | 7 | > **Event**: *typeof* `eventsTable.$inferSelect` & `object` 8 | 9 | Defined in: src/graphql/types/Event/Event.ts:8 10 | 11 | ## Type declaration 12 | 13 | ### attachments 14 | 15 | > **attachments**: [`EventAttachment`](../../../EventAttachment/EventAttachment/type-aliases/EventAttachment.md)[] \| `null` 16 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Event/Event/variables/Event.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: Event 6 | 7 | > **Event**: `ImplementableObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../../scalars/type-aliases/CustomScalars.md); \}\>, [`Event`](../type-aliases/Event.md), [`Event`](../type-aliases/Event.md)\> 8 | 9 | Defined in: src/graphql/types/Event/Event.ts:8 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/EventAttachment/EventAttachment/type-aliases/EventAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EventAttachment 6 | 7 | > **EventAttachment**: *typeof* `eventAttachmentsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/EventAttachment/EventAttachment.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Fund/Fund/type-aliases/Fund.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Fund 6 | 7 | > **Fund**: *typeof* `fundsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/Fund/Fund.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/FundCampaign/FundCampaign/type-aliases/FundCampaign.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: FundCampaign 6 | 7 | > **FundCampaign**: *typeof* `fundCampaignsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/FundCampaign/FundCampaign.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/FundCampaignPledge/FundCampaignPledge/type-aliases/FundCampaignPledge.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: FundCampaignPledge 6 | 7 | > **FundCampaignPledge**: *typeof* `fundCampaignPledgesTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/FundCampaignPledge/FundCampaignPledge.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Organization/Organization/type-aliases/Organization.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Organization 6 | 7 | > **Organization**: *typeof* `organizationsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/Organization/Organization.ts:5 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Post/GetUrlResponse/interfaces/GetUrlResponse.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Interface: GetUrlResponse 6 | 7 | Defined in: src/graphql/types/Post/GetUrlResponse.ts:3 8 | 9 | ## Properties 10 | 11 | ### presignedUrl 12 | 13 | > **presignedUrl**: `string` 14 | 15 | Defined in: src/graphql/types/Post/GetUrlResponse.ts:4 16 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Post/Post/type-aliases/Post.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Post 6 | 7 | > **Post**: *typeof* `postsTable.$inferSelect` & `object` 8 | 9 | Defined in: src/graphql/types/Post/Post.ts:8 10 | 11 | ## Type declaration 12 | 13 | ### attachments 14 | 15 | > **attachments**: [`PostAttachment`](../../../PostAttachment/PostAttachment/type-aliases/PostAttachment.md)[] \| `null` 16 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Post/Post/variables/Post.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: Post 6 | 7 | > **Post**: `ImplementableObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../../scalars/type-aliases/CustomScalars.md); \}\>, [`Post`](../type-aliases/Post.md), [`Post`](../type-aliases/Post.md)\> 8 | 9 | Defined in: src/graphql/types/Post/Post.ts:8 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/PostAttachment/PostAttachment/type-aliases/PostAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: PostAttachment 6 | 7 | > **PostAttachment**: *typeof* `postAttachmentsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/PostAttachment/PostAttachment.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Query/ActionCategory/variables/actionCategoriesByOrganization.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: actionCategoriesByOrganization 6 | 7 | > `const` **actionCategoriesByOrganization**: `void` 8 | 9 | Defined in: src/graphql/types/Query/ActionCategory.ts:29 10 | 11 | GraphQL Query: Fetches all Action Item Categories by organizationId. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Query/ActionItem/variables/actionItemsByOrganization.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: actionItemsByOrganization 6 | 7 | > `const` **actionItemsByOrganization**: `void` 8 | 9 | Defined in: src/graphql/types/Query/ActionItem.ts:17 10 | 11 | GraphQL Query: Fetches all ActionItems by organizationId. 12 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Tag/Tag/type-aliases/Tag.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Tag 6 | 7 | > **Tag**: *typeof* `tagsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/Tag/Tag.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/TagFolder/TagFolder/type-aliases/TagFolder.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: TagFolder 6 | 7 | > **TagFolder**: *typeof* `tagFoldersTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/TagFolder/TagFolder.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/User/User/type-aliases/User.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: User 6 | 7 | > **User**: *typeof* `usersTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/User/User.ts:6 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Venue/Venue/type-aliases/Venue.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: Venue 6 | 7 | > **Venue**: *typeof* `venuesTable.$inferSelect` & `object` 8 | 9 | Defined in: src/graphql/types/Venue/Venue.ts:8 10 | 11 | ## Type declaration 12 | 13 | ### attachments 14 | 15 | > **attachments**: [`VenueAttachment`](../../../VenueAttachment/VenueAttachment/type-aliases/VenueAttachment.md)[] \| `null` 16 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/Venue/Venue/variables/Venue.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: Venue 6 | 7 | > **Venue**: `ImplementableObjectRef`\<`ExtendDefaultTypes`\<\{ `Context`: [`GraphQLContext`](../../../../context/type-aliases/GraphQLContext.md); `Scalars`: [`CustomScalars`](../../../../scalars/type-aliases/CustomScalars.md); \}\>, [`Venue`](../type-aliases/Venue.md), [`Venue`](../type-aliases/Venue.md)\> 8 | 9 | Defined in: src/graphql/types/Venue/Venue.ts:8 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/graphql/types/VenueAttachment/VenueAttachment/type-aliases/VenueAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: VenueAttachment 6 | 7 | > **VenueAttachment**: *typeof* `venueAttachmentsTable.$inferSelect` 8 | 9 | Defined in: src/graphql/types/VenueAttachment/VenueAttachment.ts:4 10 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/plugins/functions/plugins.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: plugins() 6 | 7 | > **plugins**(`fastify`): `Promise`\<`void`\> 8 | 9 | Defined in: src/plugins/index.ts:6 10 | 11 | ## Parameters 12 | 13 | ### fastify 14 | 15 | `FastifyInstance`\<`RawServerDefault`, `IncomingMessage`, `ServerResponse`\<`IncomingMessage`\>, `FastifyBaseLogger`, `FastifyTypeProviderDefault`\> 16 | 17 | ## Returns 18 | 19 | `Promise`\<`void`\> 20 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/utilities/TalawaGraphQLError/type-aliases/TooManyRequestsExtensions.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: TooManyRequestsExtensions 6 | 7 | > **TooManyRequestsExtensions**: `object` 8 | 9 | Defined in: src/utilities/TalawaGraphQLError.ts:201 10 | 11 | ## Type declaration 12 | 13 | ### code 14 | 15 | > **code**: `"too_many_requests"` 16 | -------------------------------------------------------------------------------- /docs/docs/docs/auto-schema/utilities/TalawaGraphQLError/variables/defaultTalawaGraphQLErrorMessages.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: defaultTalawaGraphQLErrorMessages 6 | 7 | > `const` **defaultTalawaGraphQLErrorMessages**: `{ [Key in TalawaGraphQLErrorExtensions["code"]]: string }` 8 | 9 | Defined in: src/utilities/TalawaGraphQLError.ts:216 10 | -------------------------------------------------------------------------------- /docs/docs/docs/introduction.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: introduction 3 | title: Introduction 4 | slug: / 5 | --- 6 | 7 | Talawa API is the API backend that supports: 8 | 9 | 1. Talawa Admin: Comprised of two subsystems. 10 | 1. The Talawa administrative web based dashboard 11 | 2. The Talawa web based user portal 12 | 2. The Talawa mobile app. 13 | -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS files with the .module.css suffix will be treated as CSS modules 3 | * and scoped locally. 4 | */ 5 | 6 | .heroBanner { 7 | padding: 4rem 0; 8 | text-align: center; 9 | position: relative; 10 | overflow: hidden; 11 | } 12 | 13 | @media screen and (max-width: 996px) { 14 | .heroBanner { 15 | padding: 2rem; 16 | } 17 | } 18 | 19 | .buttons { 20 | display: flex; 21 | align-items: center; 22 | justify-content: center; 23 | } 24 | -------------------------------------------------------------------------------- /docs/src/utils/Heading.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | interface HeadingProps { 4 | text: string; 5 | [key: string]: any; 6 | } 7 | 8 | const Heading: React.FC = ({ text, ...props }) => { 9 | return

{text}

; 10 | } 11 | export default Heading -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/.nojekyll -------------------------------------------------------------------------------- /docs/static/CNAME: -------------------------------------------------------------------------------- 1 | docs-api.talawa.io 2 | -------------------------------------------------------------------------------- /docs/static/img/Fifth-Panel-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/Fifth-Panel-Image.png -------------------------------------------------------------------------------- /docs/static/img/High_level_offline_action_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/High_level_offline_action_flow.png -------------------------------------------------------------------------------- /docs/static/img/Talawa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/Talawa.jpg -------------------------------------------------------------------------------- /docs/static/img/api-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/api-community.png -------------------------------------------------------------------------------- /docs/static/img/base_feed_manager_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/base_feed_manager_flow.png -------------------------------------------------------------------------------- /docs/static/img/design_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/design_system.png -------------------------------------------------------------------------------- /docs/static/img/docs_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/docs_workflow.png -------------------------------------------------------------------------------- /docs/static/img/document-deprecated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/document-deprecated.png -------------------------------------------------------------------------------- /docs/static/img/document-draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/document-draft.png -------------------------------------------------------------------------------- /docs/static/img/docusaurus copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/docusaurus copy.png -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/email/draft-submissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/email/draft-submissions.png -------------------------------------------------------------------------------- /docs/static/img/email/freelists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/email/freelists.png -------------------------------------------------------------------------------- /docs/static/img/email/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/email/info.png -------------------------------------------------------------------------------- /docs/static/img/email/mentors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/email/mentors.png -------------------------------------------------------------------------------- /docs/static/img/email/submissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/email/submissions.png -------------------------------------------------------------------------------- /docs/static/img/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/gsod-2022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/gsod-2022.jpg -------------------------------------------------------------------------------- /docs/static/img/gsod2022-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/gsod2022-green.png -------------------------------------------------------------------------------- /docs/static/img/gsod2022-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/gsod2022-white.png -------------------------------------------------------------------------------- /docs/static/img/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/static/img/icons/favicon_palisadoes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/icons/favicon_palisadoes.ico -------------------------------------------------------------------------------- /docs/static/img/icons/opportunities.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/static/img/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-01.png -------------------------------------------------------------------------------- /docs/static/img/image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-02.png -------------------------------------------------------------------------------- /docs/static/img/image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-03.png -------------------------------------------------------------------------------- /docs/static/img/image-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-04.png -------------------------------------------------------------------------------- /docs/static/img/image-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-05.jpg -------------------------------------------------------------------------------- /docs/static/img/image-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-07.png -------------------------------------------------------------------------------- /docs/static/img/image-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-08.png -------------------------------------------------------------------------------- /docs/static/img/image-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-09.png -------------------------------------------------------------------------------- /docs/static/img/image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/image-10.png -------------------------------------------------------------------------------- /docs/static/img/logo-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logo-main.png -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/static/img/logos copy/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logos copy/talawa-logo-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/talawa-logo-200x200.png -------------------------------------------------------------------------------- /docs/static/img/logos copy/talawa-logo-600x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/talawa-logo-600x600.png -------------------------------------------------------------------------------- /docs/static/img/logos copy/talawa-logo-clear-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/talawa-logo-clear-space.png -------------------------------------------------------------------------------- /docs/static/img/logos copy/talawa-logo-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/talawa-logo-colors.png -------------------------------------------------------------------------------- /docs/static/img/logos copy/talawa-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/talawa-logo.ai -------------------------------------------------------------------------------- /docs/static/img/logos copy/talawa-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/talawa-logo.eps -------------------------------------------------------------------------------- /docs/static/img/logos copy/talawa-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos copy/talawa-logo.pdf -------------------------------------------------------------------------------- /docs/static/img/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/logos/logo.png -------------------------------------------------------------------------------- /docs/static/img/markdown/misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/markdown/misc/logo.png -------------------------------------------------------------------------------- /docs/static/img/markdown/misc/talawa-logo-lite-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/markdown/misc/talawa-logo-lite-200x200.png -------------------------------------------------------------------------------- /docs/static/img/opportunities.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/static/img/panel-5-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/panel-5-img.png -------------------------------------------------------------------------------- /docs/static/img/perform_action_wrapper_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/perform_action_wrapper_flow.png -------------------------------------------------------------------------------- /docs/static/img/plugin/plugin-store-navbar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/plugin/plugin-store-navbar.PNG -------------------------------------------------------------------------------- /docs/static/img/plugin/plugin-types.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/plugin/plugin-types.PNG -------------------------------------------------------------------------------- /docs/static/img/plugin/store.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/plugin/store.PNG -------------------------------------------------------------------------------- /docs/static/img/plugin/talawa.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/plugin/talawa.PNG -------------------------------------------------------------------------------- /docs/static/img/talawa_lint/lint_warning_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/talawa_lint/lint_warning_ex.png -------------------------------------------------------------------------------- /docs/static/img/talawa_lint/no_lint_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/docs/static/img/talawa_lint/no_lint_ex.png -------------------------------------------------------------------------------- /docs/static/img/twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | // This file is not used in compilation. It is here just for a nice editor experience. 3 | "extends": "@docusaurus/tsconfig", 4 | "compilerOptions": { 5 | "baseUrl": ".", 6 | "strict": true, 7 | "jsx": "react", 8 | "noImplicitAny": true, 9 | "strictNullChecks": true 10 | }, 11 | "exclude": [".docusaurus", "build"] 12 | } -------------------------------------------------------------------------------- /drizzle_migrations/meta/_journal.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "7", 3 | "dialect": "postgresql", 4 | "entries": [ 5 | { 6 | "idx": 0, 7 | "version": "7", 8 | "when": 1753528146339, 9 | "tag": "20250726110906_fearless_molten_man", 10 | "breakpoints": true 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | # Do not delete. This file is used to configure 2 | # python black formatting 3 | [tool.black] 4 | line-length = 79 5 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base"], 3 | "baseBranches": ["disable"], 4 | "schedule": ["every weekend"], 5 | "packageRules": [ 6 | { 7 | "packagePatterns": ["*"], 8 | "groupName": "All Minor Updates", 9 | "group": true, 10 | "commitMessageAction": "Renovate Update: " 11 | } 12 | ], 13 | "labels": ["dependencies"], 14 | "branchPrefix": "renovate/", 15 | "automergeType": "pr", 16 | "automerge": true 17 | } 18 | -------------------------------------------------------------------------------- /scripts/dbManagement/sample_data/images/DALL·E_talawa_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/scripts/dbManagement/sample_data/images/DALL·E_talawa_1.webp -------------------------------------------------------------------------------- /scripts/dbManagement/sample_data/images/DALL·E_talawa_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/scripts/dbManagement/sample_data/images/DALL·E_talawa_2.webp -------------------------------------------------------------------------------- /scripts/dbManagement/sample_data/images/DALL·E_talawa_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/scripts/dbManagement/sample_data/images/DALL·E_talawa_3.webp -------------------------------------------------------------------------------- /scripts/dbManagement/sample_data/images/DALL·E_talawa_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/scripts/dbManagement/sample_data/images/DALL·E_talawa_4.webp -------------------------------------------------------------------------------- /scripts/dbManagement/sample_data/images/DALL·E_talawa_5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/scripts/dbManagement/sample_data/images/DALL·E_talawa_5.webp -------------------------------------------------------------------------------- /scripts/dbManagement/sample_data/images/DALL·E_talawa_6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/scripts/dbManagement/sample_data/images/DALL·E_talawa_6.webp -------------------------------------------------------------------------------- /setup.ts: -------------------------------------------------------------------------------- 1 | import { setup } from "scripts/setup/setup"; 2 | 3 | setup().catch((err) => { 4 | console.error(`Setup failed: ${err.message}`); 5 | console.error("Error details:", { 6 | type: err.name, 7 | code: err.code, 8 | stack: err.stack, 9 | }); 10 | process.exit(1); 11 | }); 12 | -------------------------------------------------------------------------------- /src/drizzle/README.md: -------------------------------------------------------------------------------- 1 | # About this directory 2 | 3 | This directory contains drizzle-orm schema definitions for the postgres database. 4 | 5 | # Directory structure 6 | 7 | The `./schema.ts` file must export the drizzle schema and only that. Other than that there aren't any strict directory structure requirements. -------------------------------------------------------------------------------- /src/drizzle/enums/advertisementAttachmentMimeType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | import { imageMimeTypeEnum } from "./imageMimeType"; 3 | import { videoMimeTypeEnum } from "./videoMimeType"; 4 | 5 | /** 6 | * Possible variants of the type of an attachement of an advertisement. 7 | */ 8 | export const advertisementAttachmentMimeTypeEnum = z.enum([ 9 | ...imageMimeTypeEnum.options, 10 | ...videoMimeTypeEnum.options, 11 | ]); 12 | -------------------------------------------------------------------------------- /src/drizzle/enums/advertisementType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the type of an advertisement. 5 | */ 6 | export const advertisementTypeEnum = z.enum(["banner", "menu", "pop_up"]); 7 | -------------------------------------------------------------------------------- /src/drizzle/enums/agendaItemType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the type of an agenda item. 5 | */ 6 | export const agendaItemTypeEnum = z.enum([ 7 | "general", 8 | "note", 9 | "scripture", 10 | "song", 11 | ]); 12 | -------------------------------------------------------------------------------- /src/drizzle/enums/chatMembershipRole.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the role assigned to a user within a chat. 5 | */ 6 | export const chatMembershipRoleEnum = z.enum(["administrator", "regular"]); 7 | -------------------------------------------------------------------------------- /src/drizzle/enums/commentVoteType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the type of of a vote on a comment. 5 | */ 6 | export const commentVoteTypeEnum = z.enum(["down_vote", "up_vote"]); 7 | -------------------------------------------------------------------------------- /src/drizzle/enums/eventAttachmentMimeType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | import { imageMimeTypeEnum } from "./imageMimeType"; 3 | import { videoMimeTypeEnum } from "./videoMimeType"; 4 | 5 | /** 6 | * Possible variants of the type of an attachement of an event. 7 | */ 8 | export const eventAttachmentMimeTypeEnum = z.enum([ 9 | ...imageMimeTypeEnum.options, 10 | ...videoMimeTypeEnum.options, 11 | ]); 12 | -------------------------------------------------------------------------------- /src/drizzle/enums/familyMembershipRole.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the role of a user in a family(if applicable). 5 | */ 6 | export const familyMembershipRoleEnum = z.enum([ 7 | "adult", 8 | "child", 9 | "head_of_household", 10 | "spouse", 11 | ]); 12 | -------------------------------------------------------------------------------- /src/drizzle/enums/imageMimeType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the type of an image. 5 | */ 6 | export const imageMimeTypeEnum = z.enum([ 7 | "image/avif", 8 | "image/jpeg", 9 | "image/png", 10 | "image/webp", 11 | ]); 12 | -------------------------------------------------------------------------------- /src/drizzle/enums/organizationMembershipRole.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the role assigned to a user within an organization. 5 | */ 6 | export const organizationMembershipRoleEnum = z.enum([ 7 | "administrator", 8 | "regular", 9 | ]); 10 | -------------------------------------------------------------------------------- /src/drizzle/enums/postVoteType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the type of a vote on a post. 5 | */ 6 | export const postVoteTypeEnum = z.enum(["down_vote", "up_vote"]); 7 | -------------------------------------------------------------------------------- /src/drizzle/enums/recurrenceFrequency.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the frequency of a recurring event. 5 | */ 6 | export const recurrenceFrequencyEnum = z.enum([ 7 | "DAILY", 8 | "WEEKLY", 9 | "MONTHLY", 10 | "YEARLY", 11 | ]); 12 | -------------------------------------------------------------------------------- /src/drizzle/enums/userEducationGrade.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the education grade(if applicable) of a user. 5 | */ 6 | export const userEducationGradeEnum = z.enum([ 7 | "grade_1", 8 | "grade_2", 9 | "grade_3", 10 | "grade_4", 11 | "grade_5", 12 | "grade_6", 13 | "grade_7", 14 | "grade_8", 15 | "grade_9", 16 | "grade_10", 17 | "grade_11", 18 | "grade_12", 19 | "graduate", 20 | "kg", 21 | "no_grade", 22 | "pre_kg", 23 | ]); 24 | -------------------------------------------------------------------------------- /src/drizzle/enums/userEmploymentStatus.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the employment status(if applicable) of a user. 5 | */ 6 | export const userEmploymentStatusEnum = z.enum([ 7 | "full_time", 8 | "part_time", 9 | "unemployed", 10 | ]); 11 | -------------------------------------------------------------------------------- /src/drizzle/enums/userMaritalStatus.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the martial status(if applicable) of a user. 5 | */ 6 | export const userMaritalStatusEnum = z.enum([ 7 | "divorced", 8 | "engaged", 9 | "married", 10 | "seperated", 11 | "single", 12 | "widowed", 13 | ]); 14 | -------------------------------------------------------------------------------- /src/drizzle/enums/userNatalSex.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the sex assigned to a user at birth. 5 | */ 6 | export const userNatalSexEnum = z.enum(["female", "intersex", "male"]); 7 | -------------------------------------------------------------------------------- /src/drizzle/enums/userRole.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the role assigned to a user. 5 | */ 6 | export const userRoleEnum = z.enum(["administrator", "regular"]); 7 | -------------------------------------------------------------------------------- /src/drizzle/enums/venueAttachmentMimeType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | import { imageMimeTypeEnum } from "./imageMimeType"; 3 | import { videoMimeTypeEnum } from "./videoMimeType"; 4 | 5 | /** 6 | * Possible variants of the type of an attachement of an event venue. 7 | */ 8 | export const venueAttachmentMimeTypeEnum = z.enum([ 9 | ...imageMimeTypeEnum.options, 10 | ...videoMimeTypeEnum.options, 11 | ]); 12 | -------------------------------------------------------------------------------- /src/drizzle/enums/videoMimeType.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the type of a video. 5 | */ 6 | export const videoMimeTypeEnum = z.enum(["video/mp4", "video/webm"]); 7 | -------------------------------------------------------------------------------- /src/drizzle/enums/volunteerGroupAssignmentInviteStatus.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | /** 4 | * Possible variants of the status of the assignment of a user in an event's volunteer group. 5 | */ 6 | export const volunteerGroupAssignmentInviteStatusEnum = z.enum([ 7 | "accepted", 8 | "declined", 9 | "no_response", 10 | ]); 11 | -------------------------------------------------------------------------------- /src/graphql/README.md: -------------------------------------------------------------------------------- 1 | # About this directory 2 | 3 | This directory is intended for storing all pothos schema definitions used for talawa api's graphql implementation. 4 | 5 | # Directory structure 6 | 7 | This directory must contain a file at `./schema.ts` that exports the executable graphql schema for usage in the graphql handler. Other than that there aren't any strict directory structure requirements. -------------------------------------------------------------------------------- /src/graphql/enums/AdvertisementType.ts: -------------------------------------------------------------------------------- 1 | import { advertisementTypeEnum } from "~/src/drizzle/enums/advertisementType"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const AdvertisementType = builder.enumType("AdvertisementType", { 5 | description: "Possible variants of the type of an advertisement.", 6 | values: advertisementTypeEnum.options, 7 | }); 8 | -------------------------------------------------------------------------------- /src/graphql/enums/AgendaItemType.ts: -------------------------------------------------------------------------------- 1 | import { agendaItemTypeEnum } from "~/src/drizzle/enums/agendaItemType"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const AgendaItemType = builder.enumType("AgendaItemType", { 5 | description: "Possible variants of the type of an agenda item.", 6 | values: agendaItemTypeEnum.options, 7 | }); 8 | -------------------------------------------------------------------------------- /src/graphql/enums/ChatMembershipRole.ts: -------------------------------------------------------------------------------- 1 | import { chatMembershipRoleEnum } from "~/src/drizzle/enums/chatMembershipRole"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const ChatMembershipRole = builder.enumType("ChatMembershipRole", { 5 | description: 6 | "Possible variants of the role assigned to a user within a chat.", 7 | values: chatMembershipRoleEnum.options, 8 | }); 9 | -------------------------------------------------------------------------------- /src/graphql/enums/CommentVoteType.ts: -------------------------------------------------------------------------------- 1 | import { commentVoteTypeEnum } from "~/src/drizzle/enums/commentVoteType"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const CommentVoteType = builder.enumType("CommentVoteType", { 5 | description: "Possible variants of the type of of a vote on a comment.", 6 | values: commentVoteTypeEnum.options, 7 | }); 8 | -------------------------------------------------------------------------------- /src/graphql/enums/OrganizationMembershipRole.ts: -------------------------------------------------------------------------------- 1 | import { organizationMembershipRoleEnum } from "~/src/drizzle/enums/organizationMembershipRole"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const OrganizationMembershipRole = builder.enumType( 5 | "OrganizationMembershipRole", 6 | { 7 | description: 8 | "Possible variants of the role assigned to a user within an organization.", 9 | values: organizationMembershipRoleEnum.options, 10 | }, 11 | ); 12 | -------------------------------------------------------------------------------- /src/graphql/enums/PostVoteType.ts: -------------------------------------------------------------------------------- 1 | import { postVoteTypeEnum } from "~/src/drizzle/enums/postVoteType"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const PostVoteType = builder.enumType("PostVoteType", { 5 | description: "Possible variants of the type of a vote on a post.", 6 | values: postVoteTypeEnum.options, 7 | }); 8 | -------------------------------------------------------------------------------- /src/graphql/enums/RecurrenceFrequency.ts: -------------------------------------------------------------------------------- 1 | import { recurrenceFrequencyEnum } from "~/src/drizzle/enums/recurrenceFrequency"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const Frequency = builder.enumType("Frequency", { 5 | description: "Possible variants of the frequency of a recurring event.", 6 | values: recurrenceFrequencyEnum.options, 7 | }); 8 | -------------------------------------------------------------------------------- /src/graphql/enums/UserEducationGrade.ts: -------------------------------------------------------------------------------- 1 | import { userEducationGradeEnum } from "~/src/drizzle/enums/userEducationGrade"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const UserEducationGrade = builder.enumType("UserEducationGrade", { 5 | description: 6 | "Possible variants of the education grade(if applicable) of a user.", 7 | values: userEducationGradeEnum.options, 8 | }); 9 | -------------------------------------------------------------------------------- /src/graphql/enums/UserEmploymentStatus.ts: -------------------------------------------------------------------------------- 1 | import { userEmploymentStatusEnum } from "~/src/drizzle/enums/userEmploymentStatus"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const UserEmploymentStatus = builder.enumType("UserEmploymentStatus", { 5 | description: 6 | "Possible variants of the employment status(if applicable) of a user.", 7 | values: userEmploymentStatusEnum.options, 8 | }); 9 | -------------------------------------------------------------------------------- /src/graphql/enums/UserMaritalStatus.ts: -------------------------------------------------------------------------------- 1 | import { userMaritalStatusEnum } from "~/src/drizzle/enums/userMaritalStatus"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const UserMaritalStatus = builder.enumType("UserMaritalStatus", { 5 | description: 6 | "Possible variants of the martial status(if applicable) of a user.", 7 | values: userMaritalStatusEnum.options, 8 | }); 9 | -------------------------------------------------------------------------------- /src/graphql/enums/UserNatalSex.ts: -------------------------------------------------------------------------------- 1 | import { userNatalSexEnum } from "~/src/drizzle/enums/userNatalSex"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const UserNatalSex = builder.enumType("UserNatalSex", { 5 | description: "Possible variants of the sex assigned to a user at birth.", 6 | values: userNatalSexEnum.options, 7 | }); 8 | -------------------------------------------------------------------------------- /src/graphql/enums/UserRole.ts: -------------------------------------------------------------------------------- 1 | import { userRoleEnum } from "~/src/drizzle/enums/userRole"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | export const UserRole = builder.enumType("UserRole", { 5 | description: "Possible variants of the role assigned to a user.", 6 | values: userRoleEnum.options, 7 | }); 8 | -------------------------------------------------------------------------------- /src/graphql/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/src/graphql/interfaces/index.ts -------------------------------------------------------------------------------- /src/graphql/scalars/BigInt.ts: -------------------------------------------------------------------------------- 1 | import { BigIntResolver } from "graphql-scalars"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | /** 5 | * More information at this link: {@link https://the-guild.dev/graphql/scalars/docs/scalars/date} 6 | */ 7 | builder.addScalarType("BigInt", BigIntResolver); 8 | 9 | /** 10 | * `BigInt` scalar type for pothos schema. 11 | */ 12 | export type _BigInt = { 13 | Input: bigint; 14 | Output: bigint; 15 | }; 16 | -------------------------------------------------------------------------------- /src/graphql/scalars/Date.ts: -------------------------------------------------------------------------------- 1 | import { DateResolver } from "graphql-scalars"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | /** 5 | * More information at this link: {@link https://the-guild.dev/graphql/scalars/docs/scalars/date} 6 | */ 7 | builder.addScalarType("Date", DateResolver); 8 | 9 | /** 10 | * `Date` scalar type for pothos schema. 11 | */ 12 | export type _Date = { 13 | Input: Date; 14 | Output: Date; 15 | }; 16 | -------------------------------------------------------------------------------- /src/graphql/scalars/DateTime.ts: -------------------------------------------------------------------------------- 1 | import { DateTimeResolver } from "graphql-scalars"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | /** 5 | * More information at this link: {@link https://the-guild.dev/graphql/scalars/docs/scalars/date-time} 6 | */ 7 | builder.addScalarType("DateTime", DateTimeResolver); 8 | 9 | /** 10 | * `DateTime` scalar type for pothos schema. 11 | */ 12 | export type DateTime = { 13 | Input: Date; 14 | Output: Date; 15 | }; 16 | -------------------------------------------------------------------------------- /src/graphql/scalars/PhoneNumber.ts: -------------------------------------------------------------------------------- 1 | import { PhoneNumberResolver } from "graphql-scalars"; 2 | import { builder } from "~/src/graphql/builder"; 3 | 4 | /** 5 | * More information at this link: {@link https://the-guild.dev/graphql/scalars/docs/scalars/phone-number} 6 | */ 7 | builder.addScalarType("PhoneNumber", PhoneNumberResolver); 8 | 9 | /** 10 | * `PhoneNumber` scalar type for pothos schema. 11 | */ 12 | export type PhoneNumber = { 13 | Input: string; 14 | Output: string; 15 | }; 16 | -------------------------------------------------------------------------------- /src/graphql/schema.ts: -------------------------------------------------------------------------------- 1 | import { builder } from "./builder"; 2 | import "./enums/index"; 3 | import "./inputs/index"; 4 | import "./interfaces/index"; 5 | import "./scalars/index"; 6 | import "./types/index"; 7 | import "./unions/index"; 8 | 9 | /** 10 | * This is the executable graphql schema. 11 | */ 12 | export const schema = builder.toSchema({ 13 | sortSchema: true, 14 | }); 15 | -------------------------------------------------------------------------------- /src/graphql/types/ActionItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ActionItem"; 2 | export * from "./createdAt"; 3 | export * from "./updatedAt"; 4 | export * from "./creator"; 5 | export * from "./assignee"; 6 | export * from "./event"; 7 | export * from "./organization"; 8 | export * from "./actionItemCategory"; 9 | export * from "./updater"; 10 | -------------------------------------------------------------------------------- /src/graphql/types/ActionItemCategory/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ActionItemCategory"; 2 | export * from "./organization"; 3 | export * from "./creator"; 4 | export * from "./createdAt"; 5 | export * from "./updater"; 6 | export * from "./updatedAt"; 7 | export * from "./actionItems"; 8 | -------------------------------------------------------------------------------- /src/graphql/types/Advertisement/index.ts: -------------------------------------------------------------------------------- 1 | import "./Advertisement"; 2 | import "./createdAt"; 3 | import "./creator"; 4 | import "./organization"; 5 | import "./updatedAt"; 6 | import "./updater"; 7 | -------------------------------------------------------------------------------- /src/graphql/types/AdvertisementAttachment/index.ts: -------------------------------------------------------------------------------- 1 | import "./AdvertisementAttachment"; 2 | import "./url"; 3 | -------------------------------------------------------------------------------- /src/graphql/types/AgendaFolder/index.ts: -------------------------------------------------------------------------------- 1 | import "./AgendaFolder"; 2 | import "./childFolders"; 3 | import "./createdAt"; 4 | import "./creator"; 5 | import "./event"; 6 | import "./items"; 7 | import "./parentFolder"; 8 | import "./updatedAt"; 9 | import "./updater"; 10 | -------------------------------------------------------------------------------- /src/graphql/types/AgendaItem/index.ts: -------------------------------------------------------------------------------- 1 | import "./AgendaItem"; 2 | import "./createdAt"; 3 | import "./creator"; 4 | import "./folder"; 5 | import "./updatedAt"; 6 | import "./updater"; 7 | -------------------------------------------------------------------------------- /src/graphql/types/AssignUserTag/index.ts: -------------------------------------------------------------------------------- 1 | import "./AssignUserTag"; 2 | -------------------------------------------------------------------------------- /src/graphql/types/BlockedUser/index.ts: -------------------------------------------------------------------------------- 1 | import "./BlockedUser"; 2 | -------------------------------------------------------------------------------- /src/graphql/types/Chat/index.ts: -------------------------------------------------------------------------------- 1 | import "./Chat"; 2 | import "./avatarURL"; 3 | import "./createdAt"; 4 | import "./creator"; 5 | import "./members"; 6 | import "./messages"; 7 | import "./organization"; 8 | import "./updatedAt"; 9 | import "./updater"; 10 | -------------------------------------------------------------------------------- /src/graphql/types/ChatMessage/index.ts: -------------------------------------------------------------------------------- 1 | import "./ChatMessage"; 2 | import "./chat"; 3 | import "./creator"; 4 | import "./parentMessage"; 5 | -------------------------------------------------------------------------------- /src/graphql/types/Comment/index.ts: -------------------------------------------------------------------------------- 1 | import "./Comment"; 2 | import "./creator"; 3 | import "./downVoters"; 4 | import "./downVotesCount"; 5 | import "./post"; 6 | import "./upVoters"; 7 | import "./upVotesCount"; 8 | -------------------------------------------------------------------------------- /src/graphql/types/Community/index.ts: -------------------------------------------------------------------------------- 1 | import "./Community"; 2 | import "./logoURL"; 3 | import "./updatedAt"; 4 | import "./updater"; 5 | -------------------------------------------------------------------------------- /src/graphql/types/Event/index.ts: -------------------------------------------------------------------------------- 1 | import "./Event"; 2 | import "./agendaFolders"; 3 | import "./actionItems"; 4 | import "./createdAt"; 5 | import "./creator"; 6 | import "./organization"; 7 | import "./updatedAt"; 8 | import "./updater"; 9 | import "./venues"; 10 | -------------------------------------------------------------------------------- /src/graphql/types/EventAttachment/index.ts: -------------------------------------------------------------------------------- 1 | import "./EventAttachment"; 2 | import "./url"; 3 | -------------------------------------------------------------------------------- /src/graphql/types/Fund/index.ts: -------------------------------------------------------------------------------- 1 | import "./Fund"; 2 | import "./campaigns"; 3 | import "./createdAt"; 4 | import "./creator"; 5 | import "./organization"; 6 | import "./updatedAt"; 7 | import "./updater"; 8 | -------------------------------------------------------------------------------- /src/graphql/types/FundCampaign/index.ts: -------------------------------------------------------------------------------- 1 | import "./FundCampaign"; 2 | import "./createdAt"; 3 | import "./creator"; 4 | import "./fund"; 5 | import "./pledgedAmount"; 6 | import "./pledges"; 7 | import "./updatedAt"; 8 | import "./updater"; 9 | -------------------------------------------------------------------------------- /src/graphql/types/FundCampaignPledge/index.ts: -------------------------------------------------------------------------------- 1 | import "./FundCampaignPledge"; 2 | import "./campaign"; 3 | import "./createdAt"; 4 | import "./creator"; 5 | import "./pledger"; 6 | import "./updatedAt"; 7 | import "./updater"; 8 | -------------------------------------------------------------------------------- /src/graphql/types/Mutation/Mutation.ts: -------------------------------------------------------------------------------- 1 | import { builder } from "~/src/graphql/builder"; 2 | 3 | builder.mutationType({}); 4 | -------------------------------------------------------------------------------- /src/graphql/types/Mutation/plugin/index.ts: -------------------------------------------------------------------------------- 1 | // Import plugin mutation files to register them with the GraphQL builder 2 | import "./createPlugin"; 3 | import "./updatePlugin"; 4 | import "./deletePlugin"; 5 | -------------------------------------------------------------------------------- /src/graphql/types/Plugin/index.ts: -------------------------------------------------------------------------------- 1 | import "./Plugin"; 2 | import "./inputs"; 3 | -------------------------------------------------------------------------------- /src/graphql/types/Post/GetUrlResponse.ts: -------------------------------------------------------------------------------- 1 | import { builder } from "../../builder"; 2 | 3 | export interface GetUrlResponse { 4 | presignedUrl: string; 5 | } 6 | 7 | export const GetUrlResponse = 8 | builder.objectRef("GetUrlResponse"); 9 | 10 | GetUrlResponse.implement({ 11 | description: "GetUrlResponse", 12 | fields: (t) => ({ 13 | presignedUrl: t.exposeString("presignedUrl"), 14 | }), 15 | }); 16 | -------------------------------------------------------------------------------- /src/graphql/types/Post/index.ts: -------------------------------------------------------------------------------- 1 | import "./Post"; 2 | import "./comments"; 3 | import "./commentsCount"; 4 | import "./creator"; 5 | import "./downVoters"; 6 | import "./downVotesCount"; 7 | import "./organization"; 8 | import "./updater"; 9 | import "./upVoters"; 10 | import "./upVotesCount"; 11 | import "./sorting"; 12 | import "./UploadUrlResponse"; 13 | import "./hasUserVoted"; 14 | -------------------------------------------------------------------------------- /src/graphql/types/PostAttachment/index.ts: -------------------------------------------------------------------------------- 1 | import "./PostAttachment"; 2 | -------------------------------------------------------------------------------- /src/graphql/types/PostAttachment/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/src/graphql/types/PostAttachment/url.ts -------------------------------------------------------------------------------- /src/graphql/types/Query/Query.ts: -------------------------------------------------------------------------------- 1 | import { builder } from "~/src/graphql/builder"; 2 | 3 | builder.queryType({}); 4 | -------------------------------------------------------------------------------- /src/graphql/types/Subscription/Subscription.ts: -------------------------------------------------------------------------------- 1 | import { builder } from "~/src/graphql/builder"; 2 | 3 | builder.subscriptionType({}); 4 | -------------------------------------------------------------------------------- /src/graphql/types/Subscription/index.ts: -------------------------------------------------------------------------------- 1 | import "./Subscription"; 2 | import "./chatMessageCreate"; 3 | -------------------------------------------------------------------------------- /src/graphql/types/Tag/index.ts: -------------------------------------------------------------------------------- 1 | import "./Tag"; 2 | import "./assignees"; 3 | import "./createdAt"; 4 | import "./creator"; 5 | import "./folder"; 6 | import "./organization"; 7 | import "./updatedAt"; 8 | import "./updater"; 9 | -------------------------------------------------------------------------------- /src/graphql/types/TagFolder/index.ts: -------------------------------------------------------------------------------- 1 | import "./TagFolder"; 2 | import "./childFolders"; 3 | import "./creator"; 4 | import "./organization"; 5 | import "./parentFolder"; 6 | import "./tags"; 7 | import "./updater"; 8 | -------------------------------------------------------------------------------- /src/graphql/types/UnassignUserTag/index.ts: -------------------------------------------------------------------------------- 1 | import "./UnassignUserTag"; 2 | -------------------------------------------------------------------------------- /src/graphql/types/Venue/index.ts: -------------------------------------------------------------------------------- 1 | import "./Venue"; 2 | import "./createdAt"; 3 | import "./creator"; 4 | import "./events"; 5 | import "./organization"; 6 | import "./updatedAt"; 7 | import "./updater"; 8 | -------------------------------------------------------------------------------- /src/graphql/types/VenueAttachment/index.ts: -------------------------------------------------------------------------------- 1 | import "./VenueAttachment"; 2 | import "./url"; 3 | -------------------------------------------------------------------------------- /src/graphql/types/VolunteerGroup/index.ts: -------------------------------------------------------------------------------- 1 | import "./VolunteerGroup"; 2 | import "./createdAt"; 3 | import "./creator"; 4 | import "./event"; 5 | import "./leader"; 6 | import "./updatedAt"; 7 | import "./updater"; 8 | -------------------------------------------------------------------------------- /src/graphql/types/VolunteerGroupAssignment/index.ts: -------------------------------------------------------------------------------- 1 | import "./VolunteerGroupAssignment"; 2 | import "./assignee"; 3 | import "./createdAt"; 4 | import "./creator"; 5 | import "./group"; 6 | import "./updatedAt"; 7 | import "./updator"; 8 | -------------------------------------------------------------------------------- /src/graphql/unions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-api/735287d9023b4492e08713c21ecab0e2cbf1f539/src/graphql/unions/index.ts -------------------------------------------------------------------------------- /src/plugin/available/readme.md: -------------------------------------------------------------------------------- 1 | *This directory is reserved for installation of Plugins code.* 2 | Plugins with installed status can be discovered here by plugin manager. 3 | 4 | **Do Not Modify** -------------------------------------------------------------------------------- /src/routes/healthcheck.ts: -------------------------------------------------------------------------------- 1 | import type { FastifyPluginAsync } from "fastify"; 2 | 3 | /** 4 | * This fastify route plugin is used to initialize a healthcheck endpoint on the fastify server for external services to check health of talawa api. 5 | */ 6 | export const healthcheck: FastifyPluginAsync = async (fastify) => { 7 | fastify.get("/healthcheck", async (_request, reply) => 8 | reply.status(200).send({ 9 | health: "ok", 10 | }), 11 | ); 12 | }; 13 | 14 | export default healthcheck; 15 | -------------------------------------------------------------------------------- /test/_Mocks_/mockUser.ts: -------------------------------------------------------------------------------- 1 | // test/utilities/mockUser.ts 2 | import type { User } from "~/src/graphql/types/User/User"; 3 | export type DeepPartial = { 4 | [P in keyof T]?: T[P] extends object ? DeepPartial : T[P]; 5 | }; 6 | 7 | export const createMockUser = ( 8 | overrides?: DeepPartial, 9 | ): DeepPartial => ({ 10 | id: "123", 11 | name: "John Doe", 12 | role: "administrator", 13 | createdAt: new Date(), 14 | updatedAt: null, 15 | ...overrides, // Allows customization per test case 16 | }); 17 | -------------------------------------------------------------------------------- /test/_Mocks_/pubsubMock.ts: -------------------------------------------------------------------------------- 1 | import { Readable } from "node:stream"; 2 | import { vi } from "vitest"; 3 | import type { PubSub } from "~/src/graphql/pubsub"; 4 | 5 | export function createMockPubSub(): PubSub { 6 | return { 7 | publish: vi.fn(), 8 | subscribe: vi.fn().mockResolvedValue( 9 | Object.assign( 10 | new Readable({ 11 | read() {}, // Empty Readable Stream (mocks real event streams) 12 | }), 13 | { [Symbol.asyncIterator]: async function* () {} }, 14 | ), 15 | ), 16 | }; 17 | } 18 | -------------------------------------------------------------------------------- /test/graphql/types/client.ts: -------------------------------------------------------------------------------- 1 | import { createMercuriusTestClient } from "mercurius-integration-testing"; 2 | import { server } from "../../server"; 3 | 4 | /** 5 | * Graphql client for triggering graphql operations against talawa api's graphql implementation during tests. 6 | */ 7 | export const mercuriusClient = createMercuriusTestClient(server, { 8 | url: "/graphql", 9 | }); 10 | --------------------------------------------------------------------------------