We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have serialized the _id with the following data but the results are different, serializer update the _id to the Id
_id: '636a92a97624f9a6eef53a74', fullName: 'Hammas', email: '[email protected]', avatar: 'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/153.jpg', geoLocation: { type: 'Point', coordinates: [ 58.09623660121784, -88.42758967021332 ], _id: new ObjectId("636a92a97624f9a6eef53a76") }, isNewProfile: false }
here is the following response i am getting after serializer
"attributes": { "fullName": "Hammas", "email": "[email protected]", "isNewProfile": false, "geoLocation": { "type": "Point", "coordinates": [ 58.09623660121784, -88.42758967021332 ], "_id": "636a92a97624f9a6eef53a76" }, "avatar": "https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/153.jpg", "Id": "636a92a97624f9a6eef53a74"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have serialized the _id with the following data but the results are different, serializer update the _id to the Id
_id: '636a92a97624f9a6eef53a74', fullName: 'Hammas', email: '[email protected]', avatar: 'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/153.jpg', geoLocation: { type: 'Point', coordinates: [ 58.09623660121784, -88.42758967021332 ], _id: new ObjectId("636a92a97624f9a6eef53a76") }, isNewProfile: false }
here is the following response i am getting after serializer
"attributes": { "fullName": "Hammas", "email": "[email protected]", "isNewProfile": false, "geoLocation": { "type": "Point", "coordinates": [ 58.09623660121784, -88.42758967021332 ], "_id": "636a92a97624f9a6eef53a76" }, "avatar": "https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/153.jpg", "Id": "636a92a97624f9a6eef53a74"
The text was updated successfully, but these errors were encountered: