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
This code returns no rows:
let res = Collection() try? res.get("58d29558a54d7552e223dae3") let rows = res.rows()
Doing same in robomongo returns correct object:
robomongo
db.getCollection('collections').find({` _id : ObjectId("58d29558a54d7552e223dae3") })
Working it around like so for now:
let bs = BSON() bs.append(oid: BSON.OID(id)) guard let cursor = collection.find(query: bs) else { return }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This code returns no rows:
Doing same in
robomongo
returns correct object:Working it around like so for now:
The text was updated successfully, but these errors were encountered: