# Packages
Package dsl provide an API for writing gremlin dsl queries almost as-is in Go without using strings in the code.
# Functions
NewEdge create a new graph edge.
NewElement create a new graph element.
NewProperty create a new graph edge property.
NewVertex create a new graph vertex.
NewVertexProperty create a new graph vertex property.
# Structs
No description provided by the author
Element defines a base struct for graph elements.
Property denotes a key/value pair associated with an edge.
Vertex represents a graph vertex.
VertexProperty denotes a key/value pair associated with a vertex.
# Type aliases
ValueMap models a .valueMap() gremlin response.