I’d like to know if it’s possible, and if it is the correct syntax to input a parameter into the schema I am inputting into a JSONB column in postgres.
From what I understand, its the double & single quotes that might be causing some issue in your approach.
All my use cases with JSON in past have always had JSON already built when inserting. Never had to create at the time of insert query.
I see George has assigned Patrick, so he should have the exact answer.
Little bump @patrick - have held off working on this part again, in anticipation of a response. Can you let me know if this is indeed possible, and what the correct syntax should be?
You can use only use parameters for values, you could put the json with a setValue step first and then replace the :P1 with the value you need and use the whole json as parameter.
Ok, great - thanks for the clarification. That’ll save time trying to make it work the other way!
Follow up question then re: setValue step. If I choose the API output, it has say 10 fields. Whenever I try to use a setValue > create schema with only 5 of the 10 fields, the setValue still outputs the full API response, not only the 5 fields created manually in the schema.
I’m guessing this is also expected, and as it should be? So i’ll need to restrict output another way?