Sunday, June 11, 2017

get in rethinkdb

In rethink db when we want to have a row selected we can make use of this get.

table.get(key) will give us a single row. if there are no documents null is returned.

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...