i have this function to get hastag from description of node Image
when i put the keyWord manually it's work
exports.hashtag = function (req, res) {
var query = [
'start n = node(*) where n.description =~ \'(?i).*({hashtagss}).*\' return n '
].join('\n')
var params = {
hashtagss: req.params.hashtagss
};
Image.query(query, params, function (err, images) {
if (err) return res.status(500).json(err);
else return res.status(200).json({hashtags:images});
});
};
but when i send a parameter i get this error message
{
"message": "The statement has been closed.",
"name": "Neoprene"
}
any solution please
i find this solution it's work for me that's exactly what i need