get()
client.collection(name)
docs = ctx.client.collection("books").get(["lotr", "moby"])
# Example response { "lotr": { "_id": "lotr", "title": "The Lord of the Rings", "author": "J.R.R. Tolkien", "published_year": 1954 }, "moby": { "_id": "moby", "title": "Moby Dick", "author": "Herman Melville", "published_year": 1851 } }