-
Notifications
You must be signed in to change notification settings - Fork 28
feat: mongodb connector #552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sowen1023
wants to merge
4
commits into
infinilabs:main
Choose a base branch
from
sowen1023:mongo-connector
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Member
|
@sowen1023 how about attach some screenshot, or intro video, we may use it somewhere later. |
Contributor
Author
Contributor
Author
|
The source document example: {
"_id": {"$oid": "68fe2c6e0d5d38521168ffe0"},
"author": {
"name": "John Doe",
"email": "john@example.com",
"user_id": "user_001"
},
"category": "tutorial",
"content": "Learn the fundamentals of MongoDB database, including CRUD operations, indexing, and aggregation.",
"created_at": {"$date": "2024-01-15T10:30:00.000Z"},
"published": true,
"status": "processing",
"summary": "Introduction to MongoDB for beginners",
"tags": ["mongodb", "database", "nosql"],
"title": "MongoDB Basics Tutorial",
"updated_at": {"$date": "2025-10-28T14:30:10.250Z"},
"url": "https://example.com/mongodb-basics",
"version": 4,
"views": 1250
}The Coco document example: {
"id": "68fe2c6e0d5d38521168ffe0",
"created": "2024-01-15T18:30:00+08:00",
"updated": "2025-10-28T22:30:10.25+08:00",
"metadata": {
"is_published": true
},
"payload": {
"author": {
"email": "john@example.com",
"name": "John Doe",
"user_id": "user_001"
},
"status": "processing",
"version": 4,
"views": 1250
},
"source": {
"type": "connector",
"name": "My MongoDB",
"id": "d3v1rg5afbigjhi7pb70"
},
"category": "tutorial",
"title": "MongoDB Basics Tutorial",
"summary": "Introduction to MongoDB for beginners",
"content": "Learn the fundamentals of MongoDB database, including CRUD operations, indexing, and aggregation.",
"tags": [
"mongodb",
"database",
"nosql"
],
"url": "https://example.com/mongodb-basics",
"last_updated_by": {
"timestamp": "2025-10-28T22:30:10.25+08:00"
}
} |
medcl
approved these changes
Oct 30, 2025
Contributor
Author
|
I noticed the The Coco document example: {
"_index": "coco_document-v2",
"_type": "_doc",
"_id": "99fb3175a8a0c0cfc60a0aeac471bf62",
"_score": 1,
"_source": {
"id": "99fb3175a8a0c0cfc60a0aeac471bf62",
"created": "2024-01-15T18:30:00+08:00",
"updated": "2025-10-30T21:58:52.993+08:00",
"metadata": {
"is_published": true
},
"payload": {
"author": {
"email": "john@example.com",
"name": "John Doe",
"user_id": "user_001"
},
"status": "processing",
"version": 4,
"views": 1250
},
"source": {
"type": "connector",
"name": "My MongoDB",
"id": "d3v1rg5afbigjhi7pb70"
},
"category": "tutorial",
"title": "MongoDB Basics Tutorial",
"summary": "Introduction to MongoDB for beginners",
"content": "Learn the fundamentals of MongoDB database, including CRUD operations, indexing, and aggregation.",
"tags": [
"mongodb",
"database",
"nosql"
],
"url": "https://example.com/mongodb-basics",
"last_updated_by": {
"timestamp": "2025-10-30T21:58:52.993+08:00"
}
}
} |
Resolved conflicts in translation files: - web/src/locales/langs/en-us/page.ts: Merged MongoDB translations with main updates - web/src/locales/langs/zh-cn/page.ts: Preserved unified IncrementalSyncFields terminology Updated dependencies: - Installed lucide-react for new IntegratedStoreModal component - Build verified successful π€ Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Auto-generated type definitions for new components used in IntegratedStoreModal and other UI updates from main branch merge. π€ Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

What does this PR do
StoredCursorValue, addRawTypeto support database special types, such asObjectIDof BSON.CursorStateManagerandCursorSerializerfrom theneo4jconnector, unifiedneo4jandmongodbconnector incremental logic.IncrementalSyncFields.tsxUI component.Rationale for this change
Standards checklist