Awesome! Looking forward to seeing how this feature progresses. One question. Is the issue the qu

Awesome! Looking forward to seeing how this feature progresses. One question. Is the issue the query / bind payload? If so, for my example, is it possible to use more compact syntax through the native binding functionality? Like this:
INSERT INTO calendar (c_id, for_date, status) 
VALUES 
  (122393 '2023-04-03', 'AVAILABLE'), 
  (122393 '2023-04-04', 'AVAILABLE'), 
  (122393, '2023-04-05', 'AVAILABLE'), 
  ...
ON CONFLICT DO UPDATE SET status = excluded.status;
Was this page helpful?