Simple graph statement for :meth:`.Session.execute_graph`. Takes the same parameters as :class:`.SimpleStatement`.
| 182 | |
| 183 | |
| 184 | class SimpleGraphStatement(GraphStatement, SimpleStatement): |
| 185 | """ |
| 186 | Simple graph statement for :meth:`.Session.execute_graph`. |
| 187 | Takes the same parameters as :class:`.SimpleStatement`. |
| 188 | """ |
| 189 | @property |
| 190 | def query(self): |
| 191 | return self._query_string |
| 192 | |
| 193 | |
| 194 | def single_object_row_factory(column_names, rows): |
no outgoing calls