0

I have the next document in Rethinkdb.

{
  "id": 678 ,
  "author": 0 ,
  "body":  "<p>text</p>" ,
  "category":  "category" ,
  "optionlist": {
                  "option_A": "text 1" ,
                  "option_B": "text 2" ,
                  "option_C": "text 3" 
                } ,
  "rank": 4 ,
  "array": [
             "tag 1" ,
             "tag 2"
           ] ,
}

I require a query in rethinkdb where you can get as an exit only this:

"option_A": "text 1" 

and another query where you can get as an exit only this:

"tag 1"

Something like this?

r.db('myDataBase').table('myTable').pluck('id','optionlist').filter({article_id:678})
4

2 回答 2

1

好的,假设有 2 个不同的请求,那么您将拥有的第一个请求:

r.db('your_db').table('your_table').filter({id:678})('optionlist').pluck('option_A')

Obs:如果您有文档的“id”,最好使用 .get() 而不是 .filter(),如下所示:

r.db('your_db').table('your_table').get(678)('optionlist').pluck('option_A')

在第二个请求中,您将拥有:

r.db('your_db').table('your_table').get(678)('array').nth(0)

希望能帮助到你!干杯

于 2016-08-22T23:47:37.030 回答
0

我假设您的意思是“仅嵌入数组中的第一个索引”,这article_id: 678将是嵌入在以下内容中的键值对之一optionList

r.db('myDataBase').table('myTable')('optionList').filter({article_id:678})

然后对于另一个结果:

r.db('myDataBase').table('myTable')('array').nth(0)
于 2016-08-22T16:43:21.860 回答