redisgraph-go icon indicating copy to clipboard operation
redisgraph-go copied to clipboard

Add new type that can be parametrized.

Open thinkofher opened this issue 4 years ago • 0 comments

Hello,

When using redisgraph-go you cannot simply pass time.Now().Unix() as ParameterizedQuery parameter, which I though is common behavior. Example code below.

if _, err := graph.ParameterizedQuery(query, map[string]interface{}{
	"task_id":   id,
        "now":       time.Now().Unix(),
}); err != nil {
        return fmt.Errorf("graph.ParameterizedQuery: %w", err)
}

Probably I can use toInteger RedisGraphs function in query, but I still won't be able to pass int64 as property in Properties field of Nodes.

What do you think about that?

thinkofher avatar Jul 23 '21 14:07 thinkofher