addLine method

QueryWithClient addLine(
  1. String line
)

Adds one Line to inner store of query fragments.

Sample:

.addLine( 'FOR u IN users RETURN u' )

Implementation

QueryWithClient addLine(String line) =>
  addQueryTextFragment(query.Line(line));