get specific string from with neo4j cypher

85 Views Asked by At

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

2

There are 2 best solutions below

3
On BEST ANSWER

i find this solution it's work for me that's exactly what i need

exports.hashtag = function (req, res) {

    var hashtag = req.params.hashtag;

    var query = [
            'MATCH (imageTag:Image) WHERE imageTag.description =~ \'(?i).*'+hashtag+'.*\'  return imageTag'

    ].join('\n')



    Image.query(query, function (err, images) {
        if (err) return res.status(500).json(err);
        else return res.status(200).json({hashtags:images});
    });
};
1
On

Your query is not good at all

  1. don't use a scan over all nodes, use labels!
  2. parameters are not resolved within strings
  3. when inserting the data pull out hashtags as separate nodes that are connected to your content nodes

Your example

MATCH (n:Content)
WHERE n.description =~ '(?i).*('+{hashtagss}+').*' 
return n

Better:

MATCH (n:Content)<-[:TAGGED]-(t:Tag)
WHERE t.name IN {hashtags} 
return n, collect(t.name) as tags