We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using BuildQuery and Query to run a query the following query returns the expected results:
BuildQuery
Query
SELECT Id FROM PermissionSetAssignment
But when the query uses the dot notation for the related object there are no results:
SELECT PermissionSet.Id, PermissionSet.Name FROM PermissionSetAssignment
The structs for reference:
type PermissionSetAssignment struct { // ID string `force:"Id"` ID string `force:"PermissionSet.Id"` Name string `force:"PermissionSet.Name"` } type PermissionSetAssignmentResponse struct { sobjects.BaseQuery Records []*PermissionSetAssignment `force:"records"` }
What am i missing?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using
BuildQuery
andQuery
to run a query the following query returns the expected results:SELECT Id FROM PermissionSetAssignment
But when the query uses the dot notation for the related object there are no results:
SELECT PermissionSet.Id, PermissionSet.Name FROM PermissionSetAssignment
The structs for reference:
What am i missing?
The text was updated successfully, but these errors were encountered: