Hi,
I know this works:
cluster.query( “SELECT * FROM default
WHERE Type=$type”, named_parameters = {'type":“User”})
Is the following supposed to work?
cluster.query( “SELECT * FROM default
WHERE sub.Type=$sub.type”, named_parameters = {“sub.type”:“User”})
From my testing, it seems not working.
The question is:
Can the key of named_parameters include a ‘.’?
Thanks