Method: AQL.literal_node
- Defined in:
- lib/aql.rb
.literal_node(value) ⇒ AQL::Node::Literal
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return AQL node for literal
17 18 19 |
# File 'lib/aql.rb', line 17 def self.literal_node(value) AQL::Node::Literal.build(value) end |