Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
salesforce-graphql
Advanced tools
salesforce-graphql
- Bringing the GraphQL query language to Salesforce
$ yarn add salesforce-graphql jsforce
app.ts
import * as jsforce from 'jsforce';
import * as path from 'path';
import * as fs from 'fs';
import { GraphQLServer } from 'graphql-yoga';
import { Binding } from 'salesforce-graphql';
const schemaFile = path.join(__dirname, 'schema.graphql');
const typeDefs = fs.readFileSync(schemaFile, 'utf8');
const { USERNAME, PASSWORD } = process.env;
const resolvers = {
Query: {
Accounts: (parent, args, context, info) =>
context.db.query({}, info).then(res => res.records),
Account: (parent, args, context, info) =>
context.db.query({}, info).then(res => res.records[0]),
Contacts: (parent, args, context, info) =>
context.db.query({}, info).then(res => res.records),
Contact: (parentobj, args, context, info) =>
context.db.query({}, info).then(res => res.records[0]),
},
Account: {
Contacts: (parent, args, context, info) =>
context.db.query({ AccountId: parent.Id }, info).then(res => res.records),
},
Contact: {
Account: (parent, args, context, info) =>
context.db.query({ Id: parent.AccountId }, info).then(res => res.records[0]),
},
};
const conn = new jsforce.Connection({});
function init() {
const db = new Binding({ conn });
const server = new GraphQLServer({
typeDefs,
resolvers,
context: req => ({ ...req, db }),
});
server.start({ playground: '/playground' }, ({ port }) =>
console.log('Server is running on localhost:' + port)
);
}
conn.login(USERNAME, PASSWORD, (err, userinfo) => init());
schema.graphql
type Query {
Account(Id: ID!): Account
Accounts(limit: Int): [Account]
Contact(Id: ID!): Contact
Contacts(limit: Int): [Contact]
}
type Account {
Id: ID!
IsDeleted: Boolean
Name: String
Type: String
Contacts(limit: Int): [Contact]
}
type Contact {
Id: ID!
Account: Account
AccountId: String
LastName: String
FirstName: String
Salutation: String
Name: String
}
When you are ready, start the GraphQL server:
$ yarn start
Head over to http://localhost:4000/playground
to test with the following query:
{
Account(Id: "001E000001KnMkTIAV") {
Id
Name
Contacts(limit: 1) {
Name
AccountId
Account {
Name
}
}
}
}
salesforce-graphql
on NPMFAQs
### Installation
We found that salesforce-graphql demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.