Skip to content

Instantly share code, notes, and snippets.

View marshallvaughn's full-sized avatar
🛠️

Marshall Vaughn marshallvaughn

🛠️
View GitHub Profile
@marshallvaughn
marshallvaughn / get-field-names.sh
Created July 16, 2019 19:24
Get an object's field names quickly.
sfdx force:schema:sobject:describe --json -s account | \
jq -r '.result.fields[] | .name'
@marshallvaughn
marshallvaughn / sfdx-soql.txt
Created April 26, 2019 03:52
[sfdx SOQL Dash] A Dash snippet
sfdx force:data:soql:query -q "SELECT __fields__ FROM __object__ WHERE __conditions__" -u __username__