├── .babelrc ├── .dockerignore ├── .env.sample ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── build-and-push.yml │ ├── ci.yml │ └── claude.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LEGAL.md ├── LICENSE ├── README.md ├── docker-compose.yml ├── ecosystem.config.js ├── g0v.json ├── jsconfig.json ├── package.json ├── process-dev.json ├── renovate.json ├── src ├── CookieStore.js ├── __fixtures__ │ ├── auth.js │ └── index.js ├── __tests__ │ ├── __snapshots__ │ │ └── auth.js.snap │ ├── auth.js │ └── index.js ├── adm │ ├── README.md │ ├── handlers │ │ ├── badge │ │ │ ├── __fixtures__ │ │ │ │ ├── awardBadge.ts │ │ │ │ └── revokeBadge.ts │ │ │ ├── __tests__ │ │ │ │ ├── awardBadge.js │ │ │ │ └── revokeBadge.js │ │ │ ├── awardBadge.ts │ │ │ └── revokeBadge.ts │ │ ├── moderation │ │ │ ├── __fixtures__ │ │ │ │ └── blockUser.js │ │ │ ├── __tests__ │ │ │ │ └── blockUser.js │ │ │ ├── blockUser.ts │ │ │ ├── genAIReply.ts │ │ │ └── replaceMedia.ts │ │ └── ping.ts │ ├── index.ts │ └── util.ts ├── auth.js ├── checkHeaders.js ├── contextFactory.ts ├── graphql │ ├── __fixtures__ │ │ ├── media-integration │ │ │ ├── replaced.jpg │ │ │ └── small.jpg │ │ └── util │ │ │ ├── audio-test.m4a │ │ │ ├── ocr-test.jpg │ │ │ ├── video-complex.mp4 │ │ │ └── video-subtitles-only.mp4 │ ├── __tests__ │ │ ├── media-integration.js │ │ └── util.js │ ├── dataLoaders │ │ ├── __fixtures__ │ │ │ ├── analyticsLoaderFactory.js │ │ │ ├── articleCategoriesByCategoryIdLoaderFactory.js │ │ │ ├── contributionsLoaderFactory.js │ │ │ └── userLoaderFactory.js │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── analyticsLoaderFactory.js.snap │ │ │ │ ├── articleCategoriesByCategoryIdLoaderFactory.js.snap │ │ │ │ ├── contirubtionsLoaderFactory.js.snap │ │ │ │ └── userLoaderFactory.js.snap │ │ │ ├── analyticsLoaderFactory.js │ │ │ ├── articleCategoriesByCategoryIdLoaderFactory.js │ │ │ ├── contirubtionsLoaderFactory.js │ │ │ └── userLoaderFactory.js │ │ ├── analyticsLoaderFactory.js │ │ ├── articleCategoriesByCategoryIdLoaderFactory.js │ │ ├── articleCategoryFeedbacksLoaderFactory.js │ │ ├── articleRepliesByReplyIdLoaderFactory.js │ │ ├── articleReplyFeedbacksLoaderFactory.js │ │ ├── contributionsLoaderFactory.js │ │ ├── docLoaderFactory.js │ │ ├── index.ts │ │ ├── repliedArticleCountLoaderFactory.js │ │ ├── searchResultLoaderFactory.js │ │ ├── urlLoaderFactory.js │ │ ├── userLevelLoaderFactory.js │ │ ├── userLoaderFactory.js │ │ └── votedArticleReplyCountLoaderFactory.js │ ├── interfaces │ │ ├── Connection.js │ │ ├── Edge.js │ │ ├── Node.js │ │ └── PageInfo.js │ ├── models │ │ ├── AIResponse.js │ │ ├── AIResponseStatusEnum.js │ │ ├── AIResponseTypeEnum.js │ │ ├── Analytics.js │ │ ├── AnalyticsDocTypeEnum.js │ │ ├── Article.js │ │ ├── ArticleCategory.js │ │ ├── ArticleCategoryFeedback.js │ │ ├── ArticleCategoryStatusEnum.js │ │ ├── ArticleReference.js │ │ ├── ArticleReply.js │ │ ├── ArticleReplyFeedback.js │ │ ├── ArticleReplyFeedbackStatusEnum.js │ │ ├── ArticleReplyStatusEnum.js │ │ ├── ArticleStatusEnum.js │ │ ├── ArticleTypeEnum.js │ │ ├── AvatarTypeEnum.js │ │ ├── Badge.js │ │ ├── Category.js │ │ ├── Contribution.js │ │ ├── Contributor.js │ │ ├── Cooccurrence.js │ │ ├── CrawledDoc.js │ │ ├── FeedbackVote.js │ │ ├── Highlights.js │ │ ├── Hyperlink.js │ │ ├── MutationResult.js │ │ ├── Reply.js │ │ ├── ReplyRequest.js │ │ ├── ReplyRequestStatusEnum.js │ │ ├── ReplyTypeEnum.js │ │ ├── SlugErrorEnum.js │ │ ├── User.js │ │ ├── UserAwardedBadge.js │ │ ├── Ydoc.js │ │ ├── YdocVersion.js │ │ ├── __fixtures__ │ │ │ └── User.js │ │ └── __tests__ │ │ │ ├── User.js │ │ │ └── __snapshots__ │ │ │ └── User.js.snap │ ├── mutations │ │ ├── CreateAIReply.js │ │ ├── CreateArticle.js │ │ ├── CreateArticleCategory.js │ │ ├── CreateArticleReply.js │ │ ├── CreateCategory.js │ │ ├── CreateMediaArticle.js │ │ ├── CreateOrUpdateArticleCategoryFeedback.js │ │ ├── CreateOrUpdateArticleReplyFeedback.ts │ │ ├── CreateOrUpdateCooccurrence.js │ │ ├── CreateOrUpdateReplyRequest.js │ │ ├── CreateOrUpdateReplyRequestFeedback.js │ │ ├── CreateReply.js │ │ ├── UpdateArticleCategoryStatus.js │ │ ├── UpdateArticleReplyStatus.js │ │ ├── UpdateUser.js │ │ ├── __fixtures__ │ │ │ ├── CreateAIReply.js │ │ │ ├── CreateArticle.js │ │ │ ├── CreateArticleCategory.js │ │ │ ├── CreateArticleReply.js │ │ │ ├── CreateMediaArticle.js │ │ │ ├── CreateOrUpdateArticleCategoryFeedback.js │ │ │ ├── CreateOrUpdateArticleReplyFeedback.js │ │ │ ├── CreateOrUpdateCooccurrence.js │ │ │ ├── CreateOrUpdateReplyRequest.js │ │ │ ├── CreateOrUpdateReplyRequestFeedback.js │ │ │ ├── CreateReply.js │ │ │ ├── UpdateArticleCategoryStatus.js │ │ │ ├── UpdateArticleReplyStatus.js │ │ │ └── UpdateUser.js │ │ └── __tests__ │ │ │ ├── CreateAIReply.js │ │ │ ├── CreateArticle.js │ │ │ ├── CreateArticleCategory.js │ │ │ ├── CreateArticleReply.js │ │ │ ├── CreateCategory.js │ │ │ ├── CreateMediaArticle.js │ │ │ ├── CreateOrUpdateArticleCategoryFeedback.js │ │ │ ├── CreateOrUpdateArticleReplyFeedback.js │ │ │ ├── CreateOrUpdateCooccurrence.js │ │ │ ├── CreateOrUpdateReplyRequest.js │ │ │ ├── CreateOrUpdateReplyRequestFeedback.js │ │ │ ├── CreateReply.js │ │ │ ├── UpdateArticleCategoryStatus.js │ │ │ ├── UpdateArticleReplyStatus.js │ │ │ ├── UpdateUser.js │ │ │ └── __snapshots__ │ │ │ ├── CreateArticle.js.snap │ │ │ ├── CreateArticleCategory.js.snap │ │ │ ├── CreateArticleReply.js.snap │ │ │ ├── CreateCategory.js.snap │ │ │ ├── CreateOrUpdateArticleCategoryFeedback.js.snap │ │ │ ├── CreateOrUpdateArticleReplyFeedback.js.snap │ │ │ ├── CreateOrUpdateCooccurrence.js.snap │ │ │ ├── CreateOrUpdateReplyRequest.js.snap │ │ │ ├── CreateOrUpdateReplyRequestFeedback.js.snap │ │ │ ├── CreateReply.js.snap │ │ │ ├── UpdateArticleCategoryStatus.js.snap │ │ │ ├── UpdateArticleReplyStatus.js.snap │ │ │ └── UpdateUser.js.snap │ ├── queries │ │ ├── GetArticle.js │ │ ├── GetBadge.js │ │ ├── GetCategory.js │ │ ├── GetReply.js │ │ ├── GetUser.js │ │ ├── GetYdoc.js │ │ ├── ListAIResponses.js │ │ ├── ListAnalytics.js │ │ ├── ListArticleReplyFeedbacks.js │ │ ├── ListArticles.js │ │ ├── ListBlockedUsers.js │ │ ├── ListCategories.js │ │ ├── ListCooccurrences.js │ │ ├── ListReplies.js │ │ ├── ListReplyRequests.js │ │ ├── ValidateSlug.js │ │ ├── __fixtures__ │ │ │ ├── GetCategory.js │ │ │ ├── GetReplyAndArticle.js │ │ │ ├── GetUser.js │ │ │ ├── GetYdoc.js │ │ │ ├── ListAIResponses.js │ │ │ ├── ListArticleReplyFeedbacks.js │ │ │ ├── ListArticles.js │ │ │ ├── ListBlockedUsers.js │ │ │ ├── ListCategories.js │ │ │ ├── ListCooccurrences.js │ │ │ ├── ListReplies.js │ │ │ ├── ListReplyRequests.js │ │ │ └── ValidateSlug.js │ │ └── __tests__ │ │ │ ├── GetCategory.js │ │ │ ├── GetReplyAndGetArticle.js │ │ │ ├── GetUser.js │ │ │ ├── GetYdoc.js │ │ │ ├── ListAIResponses.js │ │ │ ├── ListAnalytics.js │ │ │ ├── ListArticleReplyFeedbacks.js │ │ │ ├── ListArticles.js │ │ │ ├── ListBlockedUsers.js │ │ │ ├── ListCategories.js │ │ │ ├── ListCooccurrences.js │ │ │ ├── ListReplies.js │ │ │ ├── ListReplyRequests.js │ │ │ ├── ValidateSlug.js │ │ │ └── __snapshots__ │ │ │ ├── GetCategory.js.snap │ │ │ ├── GetReplyAndGetArticle.js.snap │ │ │ ├── GetUser.js.snap │ │ │ ├── GetYdoc.js.snap │ │ │ ├── ListAIResponses.js.snap │ │ │ ├── ListAnalytics.js.snap │ │ │ ├── ListArticleReplyFeedbacks.js.snap │ │ │ ├── ListArticles.js.snap │ │ │ ├── ListBlockedUsers.js.snap │ │ │ ├── ListCategories.js.snap │ │ │ ├── ListCooccurrences.js.snap │ │ │ ├── ListReplies.js.snap │ │ │ └── ListReplyRequests.js.snap │ ├── schema.js │ └── util.js ├── index.js ├── jade │ └── index.jade ├── rollbarInstance.js ├── scripts │ ├── __fixtures__ │ │ ├── cleanupUrls.js │ │ ├── fetchStatsFromGA.js │ │ ├── genAIReply.js │ │ ├── genBERTInputArticles.js │ │ ├── genCategoryReview.js │ │ └── removeArticleReply.js │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── cleanupUrls.js.snap │ │ ├── cleanupUrls.js │ │ ├── fetchStatsFromGA.js │ │ ├── genAIReply.js │ │ ├── genBERTInputArticles.js │ │ ├── genCategoryReview.js │ │ └── removeArticleReply.js │ ├── cleanupUrls.js │ ├── experimentAVTranscript.ts │ ├── fetchStatsFromGA.js │ ├── genAIReply.js │ ├── genBERTInputArticles.js │ ├── genCategoryReview.js │ ├── migrations │ │ ├── __fixtures__ │ │ │ ├── createBackendUsers.js │ │ │ └── importFlowAnnotation.js │ │ ├── __tests__ │ │ │ ├── createBackendUsers.js │ │ │ └── importFlowAnnotation.js │ │ ├── createBackendUsers.js │ │ ├── fillAllHyperlinks.js │ │ └── importFlowAnnotation.js │ ├── removeArticleReply.js │ └── replaceMedia.js └── util │ ├── __fixtures__ │ ├── getAllDocs.js │ ├── scrapUrls.js │ └── user.js │ ├── __mocks__ │ └── grpc.js │ ├── __tests__ │ ├── __snapshots__ │ │ ├── scrapUrls.js.snap │ │ └── user.js.snap │ ├── archiveUrlsFromText.ts │ ├── getAllDocs.js │ ├── getInFactory.js │ ├── level.js │ ├── scrapUrls.js │ └── user.js │ ├── archiveUrlsFromText.ts │ ├── bulk.js │ ├── catchUnhandledRejection.js │ ├── client.ts │ ├── delayForMs.js │ ├── getAllDocs.ts │ ├── getInFactory.js │ ├── grpc.js │ ├── langfuse.ts │ ├── level.js │ ├── mediaManager.js │ ├── openPeepsOptions.js │ ├── openai.ts │ ├── protobuf │ ├── resolve_error.proto │ └── url_resolver.proto │ ├── pseudonymDict.js │ ├── scrapUrls.js │ └── user.ts ├── static ├── favicon.png └── graphiql.html ├── test ├── postTest.js ├── setup.js ├── testSequencer.js └── util │ ├── GraphQL.js │ └── fixtures.js └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/rumors-db -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build-and-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.github/workflows/build-and-push.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LEGAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/LEGAL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /g0v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/g0v.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/package.json -------------------------------------------------------------------------------- /process-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/process-dev.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/renovate.json -------------------------------------------------------------------------------- /src/CookieStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/CookieStore.js -------------------------------------------------------------------------------- /src/__fixtures__/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/__fixtures__/auth.js -------------------------------------------------------------------------------- /src/__fixtures__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/__fixtures__/index.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/auth.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/__tests__/__snapshots__/auth.js.snap -------------------------------------------------------------------------------- /src/__tests__/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/__tests__/auth.js -------------------------------------------------------------------------------- /src/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/__tests__/index.js -------------------------------------------------------------------------------- /src/adm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/README.md -------------------------------------------------------------------------------- /src/adm/handlers/badge/__fixtures__/awardBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/badge/__fixtures__/awardBadge.ts -------------------------------------------------------------------------------- /src/adm/handlers/badge/__fixtures__/revokeBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/badge/__fixtures__/revokeBadge.ts -------------------------------------------------------------------------------- /src/adm/handlers/badge/__tests__/awardBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/badge/__tests__/awardBadge.js -------------------------------------------------------------------------------- /src/adm/handlers/badge/__tests__/revokeBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/badge/__tests__/revokeBadge.js -------------------------------------------------------------------------------- /src/adm/handlers/badge/awardBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/badge/awardBadge.ts -------------------------------------------------------------------------------- /src/adm/handlers/badge/revokeBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/badge/revokeBadge.ts -------------------------------------------------------------------------------- /src/adm/handlers/moderation/__fixtures__/blockUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/moderation/__fixtures__/blockUser.js -------------------------------------------------------------------------------- /src/adm/handlers/moderation/__tests__/blockUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/moderation/__tests__/blockUser.js -------------------------------------------------------------------------------- /src/adm/handlers/moderation/blockUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/moderation/blockUser.ts -------------------------------------------------------------------------------- /src/adm/handlers/moderation/genAIReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/moderation/genAIReply.ts -------------------------------------------------------------------------------- /src/adm/handlers/moderation/replaceMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/moderation/replaceMedia.ts -------------------------------------------------------------------------------- /src/adm/handlers/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/handlers/ping.ts -------------------------------------------------------------------------------- /src/adm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/index.ts -------------------------------------------------------------------------------- /src/adm/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/adm/util.ts -------------------------------------------------------------------------------- /src/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/auth.js -------------------------------------------------------------------------------- /src/checkHeaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/checkHeaders.js -------------------------------------------------------------------------------- /src/contextFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/contextFactory.ts -------------------------------------------------------------------------------- /src/graphql/__fixtures__/media-integration/replaced.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__fixtures__/media-integration/replaced.jpg -------------------------------------------------------------------------------- /src/graphql/__fixtures__/media-integration/small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__fixtures__/media-integration/small.jpg -------------------------------------------------------------------------------- /src/graphql/__fixtures__/util/audio-test.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__fixtures__/util/audio-test.m4a -------------------------------------------------------------------------------- /src/graphql/__fixtures__/util/ocr-test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__fixtures__/util/ocr-test.jpg -------------------------------------------------------------------------------- /src/graphql/__fixtures__/util/video-complex.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__fixtures__/util/video-complex.mp4 -------------------------------------------------------------------------------- /src/graphql/__fixtures__/util/video-subtitles-only.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__fixtures__/util/video-subtitles-only.mp4 -------------------------------------------------------------------------------- /src/graphql/__tests__/media-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__tests__/media-integration.js -------------------------------------------------------------------------------- /src/graphql/__tests__/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/__tests__/util.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__fixtures__/analyticsLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__fixtures__/analyticsLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__fixtures__/articleCategoriesByCategoryIdLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__fixtures__/articleCategoriesByCategoryIdLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__fixtures__/contributionsLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__fixtures__/contributionsLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__fixtures__/userLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__fixtures__/userLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/__snapshots__/analyticsLoaderFactory.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/__snapshots__/analyticsLoaderFactory.js.snap -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/__snapshots__/articleCategoriesByCategoryIdLoaderFactory.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/__snapshots__/articleCategoriesByCategoryIdLoaderFactory.js.snap -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/__snapshots__/contirubtionsLoaderFactory.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/__snapshots__/contirubtionsLoaderFactory.js.snap -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/__snapshots__/userLoaderFactory.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/__snapshots__/userLoaderFactory.js.snap -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/analyticsLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/analyticsLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/articleCategoriesByCategoryIdLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/articleCategoriesByCategoryIdLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/contirubtionsLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/contirubtionsLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/__tests__/userLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/__tests__/userLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/analyticsLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/analyticsLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/articleCategoriesByCategoryIdLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/articleCategoriesByCategoryIdLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/articleCategoryFeedbacksLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/articleCategoryFeedbacksLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/articleRepliesByReplyIdLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/articleRepliesByReplyIdLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/articleReplyFeedbacksLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/articleReplyFeedbacksLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/contributionsLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/contributionsLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/docLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/docLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/index.ts -------------------------------------------------------------------------------- /src/graphql/dataLoaders/repliedArticleCountLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/repliedArticleCountLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/searchResultLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/searchResultLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/urlLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/urlLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/userLevelLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/userLevelLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/userLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/userLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/dataLoaders/votedArticleReplyCountLoaderFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/dataLoaders/votedArticleReplyCountLoaderFactory.js -------------------------------------------------------------------------------- /src/graphql/interfaces/Connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/interfaces/Connection.js -------------------------------------------------------------------------------- /src/graphql/interfaces/Edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/interfaces/Edge.js -------------------------------------------------------------------------------- /src/graphql/interfaces/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/interfaces/Node.js -------------------------------------------------------------------------------- /src/graphql/interfaces/PageInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/interfaces/PageInfo.js -------------------------------------------------------------------------------- /src/graphql/models/AIResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/AIResponse.js -------------------------------------------------------------------------------- /src/graphql/models/AIResponseStatusEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/AIResponseStatusEnum.js -------------------------------------------------------------------------------- /src/graphql/models/AIResponseTypeEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/AIResponseTypeEnum.js -------------------------------------------------------------------------------- /src/graphql/models/Analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Analytics.js -------------------------------------------------------------------------------- /src/graphql/models/AnalyticsDocTypeEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/AnalyticsDocTypeEnum.js -------------------------------------------------------------------------------- /src/graphql/models/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Article.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleCategory.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleCategoryFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleCategoryFeedback.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleCategoryStatusEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleCategoryStatusEnum.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleReference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleReference.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleReply.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleReplyFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleReplyFeedback.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleReplyFeedbackStatusEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleReplyFeedbackStatusEnum.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleReplyStatusEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleReplyStatusEnum.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleStatusEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleStatusEnum.js -------------------------------------------------------------------------------- /src/graphql/models/ArticleTypeEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ArticleTypeEnum.js -------------------------------------------------------------------------------- /src/graphql/models/AvatarTypeEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/AvatarTypeEnum.js -------------------------------------------------------------------------------- /src/graphql/models/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Badge.js -------------------------------------------------------------------------------- /src/graphql/models/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Category.js -------------------------------------------------------------------------------- /src/graphql/models/Contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Contribution.js -------------------------------------------------------------------------------- /src/graphql/models/Contributor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Contributor.js -------------------------------------------------------------------------------- /src/graphql/models/Cooccurrence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Cooccurrence.js -------------------------------------------------------------------------------- /src/graphql/models/CrawledDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/CrawledDoc.js -------------------------------------------------------------------------------- /src/graphql/models/FeedbackVote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/FeedbackVote.js -------------------------------------------------------------------------------- /src/graphql/models/Highlights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Highlights.js -------------------------------------------------------------------------------- /src/graphql/models/Hyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Hyperlink.js -------------------------------------------------------------------------------- /src/graphql/models/MutationResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/MutationResult.js -------------------------------------------------------------------------------- /src/graphql/models/Reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Reply.js -------------------------------------------------------------------------------- /src/graphql/models/ReplyRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ReplyRequest.js -------------------------------------------------------------------------------- /src/graphql/models/ReplyRequestStatusEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ReplyRequestStatusEnum.js -------------------------------------------------------------------------------- /src/graphql/models/ReplyTypeEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/ReplyTypeEnum.js -------------------------------------------------------------------------------- /src/graphql/models/SlugErrorEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/SlugErrorEnum.js -------------------------------------------------------------------------------- /src/graphql/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/User.js -------------------------------------------------------------------------------- /src/graphql/models/UserAwardedBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/UserAwardedBadge.js -------------------------------------------------------------------------------- /src/graphql/models/Ydoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/Ydoc.js -------------------------------------------------------------------------------- /src/graphql/models/YdocVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/YdocVersion.js -------------------------------------------------------------------------------- /src/graphql/models/__fixtures__/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/__fixtures__/User.js -------------------------------------------------------------------------------- /src/graphql/models/__tests__/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/__tests__/User.js -------------------------------------------------------------------------------- /src/graphql/models/__tests__/__snapshots__/User.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/models/__tests__/__snapshots__/User.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/CreateAIReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateAIReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateArticle.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateArticleCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateArticleCategory.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateArticleReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateArticleReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateCategory.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateMediaArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateMediaArticle.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateOrUpdateArticleCategoryFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateOrUpdateArticleCategoryFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateOrUpdateArticleReplyFeedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateOrUpdateArticleReplyFeedback.ts -------------------------------------------------------------------------------- /src/graphql/mutations/CreateOrUpdateCooccurrence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateOrUpdateCooccurrence.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateOrUpdateReplyRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateOrUpdateReplyRequest.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateOrUpdateReplyRequestFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateOrUpdateReplyRequestFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/CreateReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/CreateReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/UpdateArticleCategoryStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/UpdateArticleCategoryStatus.js -------------------------------------------------------------------------------- /src/graphql/mutations/UpdateArticleReplyStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/UpdateArticleReplyStatus.js -------------------------------------------------------------------------------- /src/graphql/mutations/UpdateUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/UpdateUser.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateAIReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateAIReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateArticle.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateArticleCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateArticleCategory.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateArticleReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateArticleReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateMediaArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateMediaArticle.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateOrUpdateArticleCategoryFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateOrUpdateArticleCategoryFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateOrUpdateArticleReplyFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateOrUpdateArticleReplyFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateOrUpdateCooccurrence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateOrUpdateCooccurrence.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateOrUpdateReplyRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateOrUpdateReplyRequest.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateOrUpdateReplyRequestFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateOrUpdateReplyRequestFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/CreateReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/CreateReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/UpdateArticleCategoryStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/UpdateArticleCategoryStatus.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/UpdateArticleReplyStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/UpdateArticleReplyStatus.js -------------------------------------------------------------------------------- /src/graphql/mutations/__fixtures__/UpdateUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__fixtures__/UpdateUser.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateAIReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateAIReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateArticle.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateArticleCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateArticleCategory.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateArticleReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateArticleReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateCategory.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateMediaArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateMediaArticle.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateOrUpdateArticleCategoryFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateOrUpdateArticleCategoryFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateOrUpdateArticleReplyFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateOrUpdateArticleReplyFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateOrUpdateCooccurrence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateOrUpdateCooccurrence.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateOrUpdateReplyRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateOrUpdateReplyRequest.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateOrUpdateReplyRequestFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateOrUpdateReplyRequestFeedback.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/CreateReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/CreateReply.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/UpdateArticleCategoryStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/UpdateArticleCategoryStatus.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/UpdateArticleReplyStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/UpdateArticleReplyStatus.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/UpdateUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/UpdateUser.js -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateArticle.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateArticle.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateArticleCategory.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateArticleCategory.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateArticleReply.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateArticleReply.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateCategory.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateCategory.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateArticleCategoryFeedback.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateArticleCategoryFeedback.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateArticleReplyFeedback.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateArticleReplyFeedback.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateCooccurrence.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateCooccurrence.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateReplyRequest.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateReplyRequest.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateReplyRequestFeedback.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateOrUpdateReplyRequestFeedback.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/CreateReply.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/CreateReply.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/UpdateArticleCategoryStatus.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/UpdateArticleCategoryStatus.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/UpdateArticleReplyStatus.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/UpdateArticleReplyStatus.js.snap -------------------------------------------------------------------------------- /src/graphql/mutations/__tests__/__snapshots__/UpdateUser.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/mutations/__tests__/__snapshots__/UpdateUser.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/GetArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/GetArticle.js -------------------------------------------------------------------------------- /src/graphql/queries/GetBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/GetBadge.js -------------------------------------------------------------------------------- /src/graphql/queries/GetCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/GetCategory.js -------------------------------------------------------------------------------- /src/graphql/queries/GetReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/GetReply.js -------------------------------------------------------------------------------- /src/graphql/queries/GetUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/GetUser.js -------------------------------------------------------------------------------- /src/graphql/queries/GetYdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/GetYdoc.js -------------------------------------------------------------------------------- /src/graphql/queries/ListAIResponses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListAIResponses.js -------------------------------------------------------------------------------- /src/graphql/queries/ListAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListAnalytics.js -------------------------------------------------------------------------------- /src/graphql/queries/ListArticleReplyFeedbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListArticleReplyFeedbacks.js -------------------------------------------------------------------------------- /src/graphql/queries/ListArticles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListArticles.js -------------------------------------------------------------------------------- /src/graphql/queries/ListBlockedUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListBlockedUsers.js -------------------------------------------------------------------------------- /src/graphql/queries/ListCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListCategories.js -------------------------------------------------------------------------------- /src/graphql/queries/ListCooccurrences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListCooccurrences.js -------------------------------------------------------------------------------- /src/graphql/queries/ListReplies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListReplies.js -------------------------------------------------------------------------------- /src/graphql/queries/ListReplyRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ListReplyRequests.js -------------------------------------------------------------------------------- /src/graphql/queries/ValidateSlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/ValidateSlug.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/GetCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/GetCategory.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/GetReplyAndArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/GetReplyAndArticle.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/GetUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/GetUser.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/GetYdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/GetYdoc.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListAIResponses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListAIResponses.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListArticleReplyFeedbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListArticleReplyFeedbacks.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListArticles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListArticles.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListBlockedUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListBlockedUsers.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListCategories.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListCooccurrences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListCooccurrences.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListReplies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListReplies.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ListReplyRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ListReplyRequests.js -------------------------------------------------------------------------------- /src/graphql/queries/__fixtures__/ValidateSlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__fixtures__/ValidateSlug.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/GetCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/GetCategory.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/GetReplyAndGetArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/GetReplyAndGetArticle.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/GetUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/GetUser.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/GetYdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/GetYdoc.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListAIResponses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListAIResponses.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListAnalytics.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListArticleReplyFeedbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListArticleReplyFeedbacks.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListArticles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListArticles.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListBlockedUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListBlockedUsers.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListCategories.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListCooccurrences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListCooccurrences.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListReplies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListReplies.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ListReplyRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ListReplyRequests.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/ValidateSlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/ValidateSlug.js -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/GetCategory.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/GetCategory.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/GetReplyAndGetArticle.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/GetReplyAndGetArticle.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/GetUser.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/GetUser.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/GetYdoc.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/GetYdoc.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListAIResponses.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListAIResponses.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListAnalytics.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListAnalytics.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListArticleReplyFeedbacks.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListArticleReplyFeedbacks.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListArticles.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListArticles.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListBlockedUsers.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListBlockedUsers.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListCategories.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListCategories.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListCooccurrences.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListCooccurrences.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListReplies.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListReplies.js.snap -------------------------------------------------------------------------------- /src/graphql/queries/__tests__/__snapshots__/ListReplyRequests.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/queries/__tests__/__snapshots__/ListReplyRequests.js.snap -------------------------------------------------------------------------------- /src/graphql/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/schema.js -------------------------------------------------------------------------------- /src/graphql/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/graphql/util.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/index.js -------------------------------------------------------------------------------- /src/jade/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/jade/index.jade -------------------------------------------------------------------------------- /src/rollbarInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/rollbarInstance.js -------------------------------------------------------------------------------- /src/scripts/__fixtures__/cleanupUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__fixtures__/cleanupUrls.js -------------------------------------------------------------------------------- /src/scripts/__fixtures__/fetchStatsFromGA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__fixtures__/fetchStatsFromGA.js -------------------------------------------------------------------------------- /src/scripts/__fixtures__/genAIReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__fixtures__/genAIReply.js -------------------------------------------------------------------------------- /src/scripts/__fixtures__/genBERTInputArticles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__fixtures__/genBERTInputArticles.js -------------------------------------------------------------------------------- /src/scripts/__fixtures__/genCategoryReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__fixtures__/genCategoryReview.js -------------------------------------------------------------------------------- /src/scripts/__fixtures__/removeArticleReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__fixtures__/removeArticleReply.js -------------------------------------------------------------------------------- /src/scripts/__tests__/__snapshots__/cleanupUrls.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__tests__/__snapshots__/cleanupUrls.js.snap -------------------------------------------------------------------------------- /src/scripts/__tests__/cleanupUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__tests__/cleanupUrls.js -------------------------------------------------------------------------------- /src/scripts/__tests__/fetchStatsFromGA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__tests__/fetchStatsFromGA.js -------------------------------------------------------------------------------- /src/scripts/__tests__/genAIReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__tests__/genAIReply.js -------------------------------------------------------------------------------- /src/scripts/__tests__/genBERTInputArticles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__tests__/genBERTInputArticles.js -------------------------------------------------------------------------------- /src/scripts/__tests__/genCategoryReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__tests__/genCategoryReview.js -------------------------------------------------------------------------------- /src/scripts/__tests__/removeArticleReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/__tests__/removeArticleReply.js -------------------------------------------------------------------------------- /src/scripts/cleanupUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/cleanupUrls.js -------------------------------------------------------------------------------- /src/scripts/experimentAVTranscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/experimentAVTranscript.ts -------------------------------------------------------------------------------- /src/scripts/fetchStatsFromGA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/fetchStatsFromGA.js -------------------------------------------------------------------------------- /src/scripts/genAIReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/genAIReply.js -------------------------------------------------------------------------------- /src/scripts/genBERTInputArticles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/genBERTInputArticles.js -------------------------------------------------------------------------------- /src/scripts/genCategoryReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/genCategoryReview.js -------------------------------------------------------------------------------- /src/scripts/migrations/__fixtures__/createBackendUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/migrations/__fixtures__/createBackendUsers.js -------------------------------------------------------------------------------- /src/scripts/migrations/__fixtures__/importFlowAnnotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/migrations/__fixtures__/importFlowAnnotation.js -------------------------------------------------------------------------------- /src/scripts/migrations/__tests__/createBackendUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/migrations/__tests__/createBackendUsers.js -------------------------------------------------------------------------------- /src/scripts/migrations/__tests__/importFlowAnnotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/migrations/__tests__/importFlowAnnotation.js -------------------------------------------------------------------------------- /src/scripts/migrations/createBackendUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/migrations/createBackendUsers.js -------------------------------------------------------------------------------- /src/scripts/migrations/fillAllHyperlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/migrations/fillAllHyperlinks.js -------------------------------------------------------------------------------- /src/scripts/migrations/importFlowAnnotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/migrations/importFlowAnnotation.js -------------------------------------------------------------------------------- /src/scripts/removeArticleReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/removeArticleReply.js -------------------------------------------------------------------------------- /src/scripts/replaceMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/scripts/replaceMedia.js -------------------------------------------------------------------------------- /src/util/__fixtures__/getAllDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__fixtures__/getAllDocs.js -------------------------------------------------------------------------------- /src/util/__fixtures__/scrapUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__fixtures__/scrapUrls.js -------------------------------------------------------------------------------- /src/util/__fixtures__/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__fixtures__/user.js -------------------------------------------------------------------------------- /src/util/__mocks__/grpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__mocks__/grpc.js -------------------------------------------------------------------------------- /src/util/__tests__/__snapshots__/scrapUrls.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/__snapshots__/scrapUrls.js.snap -------------------------------------------------------------------------------- /src/util/__tests__/__snapshots__/user.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/__snapshots__/user.js.snap -------------------------------------------------------------------------------- /src/util/__tests__/archiveUrlsFromText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/archiveUrlsFromText.ts -------------------------------------------------------------------------------- /src/util/__tests__/getAllDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/getAllDocs.js -------------------------------------------------------------------------------- /src/util/__tests__/getInFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/getInFactory.js -------------------------------------------------------------------------------- /src/util/__tests__/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/level.js -------------------------------------------------------------------------------- /src/util/__tests__/scrapUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/scrapUrls.js -------------------------------------------------------------------------------- /src/util/__tests__/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/__tests__/user.js -------------------------------------------------------------------------------- /src/util/archiveUrlsFromText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/archiveUrlsFromText.ts -------------------------------------------------------------------------------- /src/util/bulk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/bulk.js -------------------------------------------------------------------------------- /src/util/catchUnhandledRejection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/catchUnhandledRejection.js -------------------------------------------------------------------------------- /src/util/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/client.ts -------------------------------------------------------------------------------- /src/util/delayForMs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/delayForMs.js -------------------------------------------------------------------------------- /src/util/getAllDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/getAllDocs.ts -------------------------------------------------------------------------------- /src/util/getInFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/getInFactory.js -------------------------------------------------------------------------------- /src/util/grpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/grpc.js -------------------------------------------------------------------------------- /src/util/langfuse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/langfuse.ts -------------------------------------------------------------------------------- /src/util/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/level.js -------------------------------------------------------------------------------- /src/util/mediaManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/mediaManager.js -------------------------------------------------------------------------------- /src/util/openPeepsOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/openPeepsOptions.js -------------------------------------------------------------------------------- /src/util/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/openai.ts -------------------------------------------------------------------------------- /src/util/protobuf/resolve_error.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/protobuf/resolve_error.proto -------------------------------------------------------------------------------- /src/util/protobuf/url_resolver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/protobuf/url_resolver.proto -------------------------------------------------------------------------------- /src/util/pseudonymDict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/pseudonymDict.js -------------------------------------------------------------------------------- /src/util/scrapUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/scrapUrls.js -------------------------------------------------------------------------------- /src/util/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/src/util/user.ts -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/graphiql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/static/graphiql.html -------------------------------------------------------------------------------- /test/postTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/test/postTest.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/testSequencer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/test/testSequencer.js -------------------------------------------------------------------------------- /test/util/GraphQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/test/util/GraphQL.js -------------------------------------------------------------------------------- /test/util/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/test/util/fixtures.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofacts/rumors-api/HEAD/tsconfig.json --------------------------------------------------------------------------------