Skip to content

Apex Action called by flows to support the SOQL 'IN' filter parameter

Notifications You must be signed in to change notification settings

Jcook999/SOQLQueryINFilter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

SOQLQueryINFilter

Apex Action called by flows to support the SOQL 'IN' filter parameter. Currently requires a parent with an IN comparison in the query but this could be made optional.

Input Parameters:

  • label='Api name of the object' required:true
    • Description: The API name of the child object.
  • label='API names of the fields to query(comma separated)' required = true
    • Description: The list of fields to query ex: name, Id, OwnerId.
  • label='Api name of the parent field' required = true
    • Description: The API name of the field that links the parent and the child ex: ParentId.
  • label='Parent records' required = true
    • Description: The collection variable of RECORDS(not a text collection) that the parent records are in.
  • label='Include additional filters?' required = false
    • Description: A boolean value indicating if you wish to provide filters beyond just child records IN list of parent records. If TRUE then you must provide and additional filter string.
  • label='Additional filter parameters' required = false
    • Description: Text string of the additional filter parameters ex: (name = 'ABC' OR name = '123') AND createdBy.Alias = 'jcook'.
  • label='Include limit?' required = false
    • Description: A boolean value indicating if you want to specify a limit on the number of records returned. If true then a limit must be specified.
  • label='Limit size(no comma)' required = false
    • Description: Integer value of the limit to be imposed.

Output Parameters:

  • label='Child records'
    • Description: The record collection variable that the result child records will be stored in.

About

Apex Action called by flows to support the SOQL 'IN' filter parameter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages