Documentation
¶
Overview ¶
Package gogm is a package for mapping go runtime objects to neo4j entities. MIT License
Copyright (c) 2020 codingfinest ¶
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index ¶
Constants ¶
const ( //CREATE is an event life cycle indicating creation of an object CREATE lifeCycle = iota //LOAD is an event life cycle indicating the load of an object LOAD //UPDATE is an event life cycle indicating the update of an object UPDATE //DELETE is an event life cycle indicating the delete of an object DELETE )
const ( NONE LogLevel = 0 ERROR = 1 WARNING = 2 INFO = 3 DEBUG = 4 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶ added in v1.0.0
type Config struct { URI string Username string Password string LogLevel LogLevel AllowCyclicRef bool }
Config holds the OGM configuration
type DeleteOptions ¶
type DeleteOptions struct { }
DeleteOptions represents options used for saving database objects. Currently, not applicatble to this version of the OGM
type Event ¶
type Event interface { GetObject() interface{} GetLifeCycle() lifeCycle }
Event is fired on an object during one of the following life cycle CREATE, LOAD, UPDATE or DELETE
type EventListener ¶
type EventListener interface { OnPreSave(event Event) OnPostSave(event Event) OnPostLoad(event Event) OnPreDelete(event Event) OnPostDelete(event Event) }
EventListener listens for Events
type Gogm ¶
type Gogm struct {
// contains filtered or unexported fields
}
Gogm is an instance of the OGM
type LoadOptions ¶
type LoadOptions struct {
Depth int
}
LoadOptions represents options used for loading database objects
func NewLoadOptions ¶
func NewLoadOptions() *LoadOptions
NewLoadOptions creates LoadOptions with defaults
type Object ¶
type Object struct {
ID *int64 `json:"id"`
}
Object is the base object for all domain Nodes and Relationships
type Relationship ¶
type Relationship struct {
Object
}
Relationship is the base object for all domain Relationships
type SaveOptions ¶
type SaveOptions struct {
Depth int
}
SaveOptions represents options used for saving database objects
func NewSaveOptions ¶
func NewSaveOptions() *SaveOptions
NewSaveOptions creates SaveOptions with defaults
type Session ¶
type Session interface { Load(object interface{}, ID interface{}, loadOptions *LoadOptions) error LoadAll(objects interface{}, IDs interface{}, loadOptions *LoadOptions) error Reload(objects ...interface{}) error Save(objects interface{}, saveOptions *SaveOptions) error Delete(object interface{}) error DeleteAll(object interface{}, deleteOptions *DeleteOptions) error PurgeDatabase() error Clear() error BeginTransaction() (*transaction, error) GetTransaction() *transaction QueryForObject(object interface{}, cypher string, parameters map[string]interface{}) error QueryForObjects(objects interface{}, cypher string, parameters map[string]interface{}) error Query(cypher string, parameters map[string]interface{}, objects ...interface{}) ([]map[string]interface{}, error) CountEntitiesOfType(object interface{}) (int64, error) Count(cypher string, parameters map[string]interface{}) (int64, error) RegisterEventListener(EventListener) error DisposeEventListener(EventListener) error }
Session provides access to the database
Source Files
¶
- config.go
- coordinates.go
- cypherBuilder.go
- cypherExecuter.go
- deleter.go
- driverValue.go
- events.go
- field.go
- field_helpers.go
- gogm.go
- graph.go
- graphFactory.go
- id.go
- labels.go
- loader.go
- metadata.go
- model.go
- node.go
- nodeCypherbuilder.go
- nodemetadata.go
- notify.go
- options.go
- property.go
- queryer.go
- registry.go
- relationship.go
- relationshipCypherbuillder.go
- relationshipMetadata.go
- saver.go
- session.go
- sessionImpl.go
- store.go
- tags.go
- transaction.go
- transactioner.go
- utils.go