package dbtype

Import Path
	github.com/neo4j/neo4j-go-driver/v4/neo4j/dbtype (on go.dev)

Dependency Relation
	imports 2 packages, and imported by 3 packages

Involved Source Files Package dbtype contains definitions of supported database types. spatial.go temporal.go
Package-Level Type Names (total 10, all are exported)
/* sort exporteds by: | */
Time casts Date to time.Time func github.com/neo4j/neo4j-go-driver/v4/neo4j.DateOf(t time.Time) neo4j.Date
Duration represents temporal amount containing months, days, seconds and nanoseconds. Supports longer durations than time.Duration Days int64 Months int64 Nanos int Seconds int64 ( T) Equal(d2 Duration) bool String returns the string representation of this Duration in ISO-8601 compliant form. T : fmt.Stringer func github.com/neo4j/neo4j-go-driver/v4/neo4j.DurationOf(months, days, seconds int64, nanos int) neo4j.Duration func Duration.Equal(d2 Duration) bool
Time casts LocalDateTime to time.Time func github.com/neo4j/neo4j-go-driver/v4/neo4j.LocalDateTimeOf(t time.Time) neo4j.LocalDateTime
Time casts LocalTime to time.Time func github.com/neo4j/neo4j-go-driver/v4/neo4j.LocalTimeOf(t time.Time) neo4j.LocalTime
Node represents a node in the neo4j graph database // Id of this node. // Labels attached to this Node. // Properties of this Node.
Path represents a directed sequence of relationships between two nodes. This generally represents a traversal or walk through a graph and maintains a direction separate from that of any relationships traversed. It is allowed to be of size 0, meaning there are no relationships in it. In this case, it contains only a single node which is both the start and the end of the path. // All the nodes in the path. Relationships []Relationship
Point2D represents a two dimensional point in a particular coordinate reference system. // Id of coordinate reference system. X float64 Y float64 String returns string representation of this point. T : fmt.Stringer
Point3D represents a three dimensional point in a particular coordinate reference system. // Id of coordinate reference system. X float64 Y float64 Z float64 String returns string representation of this point. T : fmt.Stringer
Relationship represents a relationship in the neo4j graph database // Identity of the end node of this Relationship. // Identity of this Relationship. // Properties of this Relationship. // Identity of the start node of this Relationship. // Type of this Relationship.
Time casts Time to time.Time func github.com/neo4j/neo4j-go-driver/v4/neo4j.OffsetTimeOf(t time.Time) neo4j.OffsetTime