-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SOQL Query Builder - Add Ability to Traverse Relationship Fields #186
Comments
@AndyHaas - The issue is that I think I have mocked these types of relationships to fake it in some other places, I will see if I can do the same here. |
There are two issues here:
After fixing The reason why all relationship fields are not included in filters is performance related - a huge list is really slow to render, but could probably be solved with a virtual scrolling list. SELECT Id, NamespacePrefix, EntityDefinition.DeveloperName
FROM FieldDefinition
WHERE DataType = 'Picklist'
AND (NOT DeveloperName LIKE '%__%')
AND EntityDefinition.DeveloperName = 'Contact' |
add virtual scrolling to combobox #186
Some relationships are listed is text, but have reference info for related object Show all related base+1 fields in combobox and any other expanded object There is a performance impact of showing so many items in a list #186
I didn't think I saw this on Standard Objects either. I just happened to be on the Entity object as I saw this. |
This issue has been resolved.
|
Would love the ability to traverse to the relationship field for the filter conditions section
Example Query
The text was updated successfully, but these errors were encountered: