Skip to content

Commit

Permalink
Merge pull request #31 from SFDO-Community/feature/fix-sample-data
Browse files Browse the repository at this point in the history
Use namespace for sample data
  • Loading branch information
kdveverka authored Nov 17, 2023
2 parents 5086948 + e718298 commit 5ba605c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions data/contacts.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"Title": "Field Worker",
"Email": "[email protected]",
"Phone": "4152568563",
"LoginEmail__c": "[email protected]",
"ContactType__c": "Field Worker"
"GRMS__LoginEmail__c": "[email protected]",
"GRMS__ContactType__c": "Field Worker"
},
{
"attributes": {
Expand All @@ -23,8 +23,8 @@
"Title": "Client 1",
"Email": "[email protected]",
"Phone": "4158526633",
"LoginEmail__c": "[email protected]",
"ContactType__c": "Survey Client"
"GRMS__LoginEmail__c": "[email protected]",
"GRMS__ContactType__c": "Survey Client"
},
{
"attributes": {
Expand All @@ -36,8 +36,8 @@
"Title": "Client 2",
"Email": "[email protected]",
"Phone": "4158521463",
"LoginEmail__c": "[email protected]",
"ContactType__c": "Survey Client"
"GRMS__LoginEmail__c": "[email protected]",
"GRMS__ContactType__c": "Survey Client"
},
{
"attributes": {
Expand All @@ -49,8 +49,8 @@
"Title": "Client 3",
"Email": "[email protected]",
"Phone": "4158526398",
"LoginEmail__c": "[email protected]",
"ContactType__c": "Survey Client"
"GRMS__LoginEmail__c": "[email protected]",
"GRMS__ContactType__c": "Survey Client"
}
]
}
2 changes: 1 addition & 1 deletion data/plan.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"files": ["contacts.json"]
},
{
"sobject": "FieldWorkerClientRelation__c",
"sobject": "GRMS__FieldWorkerClientRelation__c",
"saveRefs": true,
"resolveRefs": true,
"files": ["relationship.json"]
Expand Down
6 changes: 3 additions & 3 deletions data/relationship.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
"records": [
{
"attributes": {
"type": "FieldWorkerClientRelation__c",
"type": "GRMS__FieldWorkerClientRelation__c",
"referenceId": "RelationRef1"
},
"FieldWorker__c": "@ContactRef1",
"Client__c": "@ContactRef2"
},
{
"attributes": {
"type": "FieldWorkerClientRelation__c",
"type": "GRMS__FieldWorkerClientRelation__c",
"referenceId": "RelationRef2"
},
"FieldWorker__c": "@ContactRef1",
"Client__c": "@ContactRef3"
},
{
"attributes": {
"type": "FieldWorkerClientRelation__c",
"type": "GRMS__FieldWorkerClientRelation__c",
"referenceId": "RelationRef3"
},
"FieldWorker__c": "@ContactRef1",
Expand Down

0 comments on commit 5ba605c

Please sign in to comment.