You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, this sounds pretty trivial, but I am loading data from a large dataset via mongoimport. It is creating the internal _id using ObjectId. What I have seemed to discover that doing the data load this way, it doesn't process the data the same way in which it would be done via a "Post" passing individual records.
I am currently using jsonapi-store-mongodb. There is an issue with that handler when using ObjectId's, but this PR solves that problem, you can see in the screenshot below.
this is a snippet from a simple search, that would correlate with the db.collection.find({})
Screenshot of Db result:
Screen shot of my result page.
But once I started to debug the server, it was clear why the results weren't being rendered.
My question is, how can this be solved when bulk inserting data via console?
The text was updated successfully, but these errors were encountered:
Apologies for the late reply @ju-Skinner. I'm going to merge the jsonapi-store-mongodb PR and then we can figure out if your issue is with the data store or generic to the jsonapi-server.
Yes, this sounds pretty trivial, but I am loading data from a large dataset via
mongoimport
. It is creating the internal_id
using ObjectId. What I have seemed to discover that doing the data load this way, it doesn't process the data the same way in which it would be done via a "Post" passing individual records.I am currently using
jsonapi-store-mongodb
. There is an issue with that handler when using ObjectId's, but this PR solves that problem, you can see in the screenshot below.this is a snippet from a simple search, that would correlate with the
db.collection.find({})
Screenshot of Db result:
Screen shot of my result page.
But once I started to debug the server, it was clear why the results weren't being rendered.
My question is, how can this be solved when bulk inserting data via console?
The text was updated successfully, but these errors were encountered: