module Database.Graph.HGraphStorage.Constants where
import Data.Text (Text)
namePropertyName :: Text
namePropertyName = "name"
objectFile :: FilePath
objectFile = "objects.db"
objectTypeFile :: FilePath
objectTypeFile = "objecttypes.db"
relationFile :: FilePath
relationFile = "relations.db"
relationTypeFile :: FilePath
relationTypeFile = "relationtypes.db"
propertyFile :: FilePath
propertyFile = "properties.db"
propertyTypeFile :: FilePath
propertyTypeFile = "propertytypes.db"
propertyValuesFile :: FilePath
propertyValuesFile = "propertyvalues.db"
freePrefix :: FilePath
freePrefix = "free-"