ArangoGraphEdge

avokka.arangodb.ArangoGraphEdge
See theArangoGraphEdge companion object
trait ArangoGraphEdge[F[_]]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def read[T : VPackDecoder](ifNoneMatch: Option[String], ifMatch: Option[String]): F[ArangoResponse[T]]

fetches an existing edge

fetches an existing edge

Type parameters

T

The type of the edge.

Value parameters

ifMatch

If the "If-Match" header is given, then it must contain exactly one Etag. The document is returned, if it has the same revision as the given Etag. Otherwise a HTTP 412 is returned.

ifNoneMatch

If the "If-None-Match" header is given, then it must contain exactly one Etag. The document is returned, if it has a different revision than the given Etag. Otherwise an HTTP 304 is returned.

Attributes