the USING TTL clause on UPDATE/INSERT query should be placed at the beginning of the query
as in:
UPDATE users USING TTL 10 SET favs['color'] = 'green' WHERE id = 'jsmith'
The Node.js mapper places the USING clause at the end: https://github.com/datastax/nodejs-driver/blob/master/lib/mapping/query-generator.js#L129