Sample for Candidate Presentation: Difference between revisions

Jump to navigation Jump to search
Image update
(Finished first section)
(Image update)
Line 7: Line 7:
==== Creating SOQL Filter ====
==== Creating SOQL Filter ====
To do this, first click on the repeatable section within the document. This will show the SOQL input at the bottom:
To do this, first click on the repeatable section within the document. This will show the SOQL input at the bottom:
[[File:Screenshot 2023-12-06 at 11.53.08.png|left|thumb|642x642px|SOQL Query Input]]


[[File:Screenshot 2023-12-06 at 11.53.08.png|thumb|642x642px|SOQL Query Input|none]]




Line 24: Line 18:
Id IN ({params.education-filter})
Id IN ({params.education-filter})
</syntaxhighlight>
</syntaxhighlight>
[[File:Screenshot 2023-12-06 at 11.50.07.png|left|thumb|658x658px|SOQL Query Repeatable Section]]
[[File:Screenshot 2023-12-06 at 11.50.07.png|thumb|658x658px|SOQL Query Repeatable Section|none]]
 
 
 
 
 
 
 
 




Line 38: Line 24:


==== Adding URL Parameters Manually ====
==== Adding URL Parameters Manually ====
The filter described above can be added to a document url manually like this:<syntaxhighlight>
The filter described above can be added to a document url manually like this:<syntaxhighlight>
&education-filter='123exampleId','456exampleId'
&education-filter='123exampleId','456exampleId'
</syntaxhighlight>
</syntaxhighlight>


 
Which will result in the custom SOQL query looking like this (in the background):<syntaxhighlight>
This will result in the custom SOQL query looking like this:<syntaxhighlight>
Id IN ('123exampleId','456exampleId')
Id IN ('123exampleId','456exampleId')
</syntaxhighlight>
</syntaxhighlight>


 
When the document is loaded, the repeatable section will now only show records that have Id's contained within the custom SOQL query.
On the generated document, the repeatable section will now only show records that have Id's contained within the custom SOQL query.
47

edits

Navigation menu