Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@parse-graphql/express
Advanced tools
WIP
Connect style middleware that uses parse-graphql-schema to automatically create a GraphQL API from an instance of parse-server.
yarn add @parse-graphql/express
This wraps express-graphql and can be used with frameworks such as Express, Restify, and Connect.
Here's an example using express, see more in the examples repo.
const express = require('express');
const parseGraphQL = require('@parse-graphql/express');
const app = express();
const graphqlAPI = parseGraphQL({
appId: 'foo',
masterKey: 'bar',
serverURL: 'http://foobar.com/parse',
dynamicSchema: true,
graphiql: true,
});
app.use('/graphql', graphqlAPI);
app.listen(4001);
appId: string
- required
serverURL: string
- required
javascriptKey: string
- optional, use if you added one to your parse server
masterKey: string
- optional if parseSchema
is used
parseSchema: Object
- optional, can pass in Parse Server schema (results
property from GET <serverURL>/schema
) rather than have it be fetched
dynamicSchema: boolean
- whether or not to refetch/recreate schema on every request
graphiql: boolean
- whether or not to run GraphiQL
FAQs
**WIP**
The npm package @parse-graphql/express receives a total of 0 weekly downloads. As such, @parse-graphql/express popularity was classified as not popular.
We found that @parse-graphql/express 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.