The Graphweaver Salesforce integration is an enterprise solution. The package exists in the private Graphweaver enterprise repo. Please get in contact with us if you wish to use the packages in this repo.
To connect Graphweaver to a Salesforce GraphQL API, you must have a Salesforce environment to connect to. Sign up for a developer account at https://developer.salesforce.com/signup
<aside> 💡 Note: This integration only works with the salesforce GraphQL API. Other APIs are not implemented.
</aside>
Once you have created a Salesforce environment, you will need your Salesforce Instance URL and your Salesforce Access Token.
You will have your URL from the sign up flow and it will look like this:
https://exogee-dev-ed.develop.my.salesforce.com/services/data/v59.0/graphql
To generate a token follow the quickstart guide. (This is the REST quickstart but this is where you’re directed to from the GraphQL API guide)
Once you’ve done this once you can run
sfdx auth:web:login
and
sfdx force:org:display --targetusername <your-user-name>
to generate a new toke as needed. Place these in a .env file next to the env.example file
SALESFORCE_TOKEN=XXXXXXXXX
SALESFORCE_INSTANCE_URL=XXXXXXXXX
The salesforce package only requests a Salesforce account currently. This follows the pattern of a folder containing the entity, resolver, and index of the Account.
src/backend/schema/account/entity.ts
@Entity("SalesforceAccount", {
provider: new SalesforceBackendProvider("Account"),
})
export class SalesforceAccount extends GraphQLEntity<DataAccount> {
@Field(() => ID)
id!: string;
@Field(() => String)
name!: string;
}
The Salesforce Provider supports find and findOne for accounts. This provider must be extended to support the rest of the base provider methods
packages/salesforce/src/graphweaver/provider.ts
export class SalesforceBackendProvider<
D extends BaseDataEntity,
G extends GraphQLEntity<D>
> extends Provider<D, G> {
//@todo - pass in the data entity into the constructor
public async findOne(filter: Filter<G>): Promise<D | null> {
const salesforce = new Salesforce();
return salesforce.getAccount(String(filter.id)) as unknown as D; // @todo fix type once we make this generic
}
// find
public async find(filter: Filter<G>): Promise<D[]> {
const salesforce = new Salesforce();
return salesforce.getAccounts(filter) as unknown as D[]; // @todo fix type once we make this generic
}
}