Esempio n. 1
0
        public void DropIndex(string label, string property)
        {
            var clause   = string.Format(DropIndexClauseFormat, label, property);
            var endpoint = new CypherClientFactory(_uri, _username, _password, _webClient, _webSerializer, _entityCache).Create();

            endpoint.ExecuteCommand(clause);
        }
Esempio n. 2
0
        public void DropConstraint(string label, string property)
        {
            var clause   = string.Format(DropConstraintClauseFormat, NodeVariableName, label, property);
            var endpoint = new CypherClientFactory(_uri, _webClient, _webSerializer, _entityCache).Create();

            endpoint.ExecuteCommand(clause);
        }