Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@neo4j/graphql
Advanced tools
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
Alpha 🏗
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations.
$ npm install @neo4j/graphql
⚠ graphql
is a peerDependency
$ npm install graphql
Import libraries using either import
:
import { makeAugmentedSchema } from "@neo4j/graphql";
import * as neo4j from "neo4j-driver";
import { ApolloServer } from "apollo-server";
Or require
:
const { makeAugmentedSchema } = require("@neo4j/graphql");
const neo4j = require("neo4j-driver");
const { ApolloServer } = require("apollo-server");
Then proceed to create schema objects and serve over port 4000 using Apollo Server:
const typeDefs = `
type Movie {
title: String
year: Int
imdbRating: Float
genres: [Genre] @relationship(type: "IN_GENRE", direction: "OUT")
}
type Genre {
name: String
movies: [Movie] @relationship(type: "IN_GENRE", direction: "IN")
}
`;
const neoSchema = makeAugmentedSchema({ typeDefs });
const driver = neo4j.driver(
"bolt://localhost:7687",
neo4j.auth.basic("neo4j", "letmein")
);
const server = new ApolloServer({
schema: neoSchema.schema,
context: ({ req }) => ({ req, driver }),
});
server.listen(4000).then(() => console.log("Online"));
mutation {
createMovies(
input: [{ title: "The Matrix", year: 1999, imdbRating: 8.7 }]
) {
title
}
}
mutation {
updateMovies(
where: { title: "The Matrix" }
connect: {
genres: { where: { OR: [{ name: "Sci-fi" }, { name: "Action" }] } }
}
) {
title
}
}
mutation {
createMovies(
input: [
{
title: "The Matrix"
year: 1999
imdbRating: 8.7
genres: {
connect: { where: [{ name: "Sci-fi" }, { name: "Action" }] }
}
}
]
) {
title
}
}
query {
Movies {
title
genres {
name
}
}
}
Define complex, nested & related, authorization rules such as; “grant update access to all moderators of a post”;
type User {
id: ID!
username: String!
}
type Post
@auth(
rules: [
{
allow: [{ moderator: { id: "sub" } }] # "sub" being "req.jwt.sub"
operations: ["update"]
}
]
) {
id: ID!
title: String!
moderator: User @relationship(type: "MODERATES_POST", direction: "IN")
}
FAQs
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
The npm package @neo4j/graphql receives a total of 11,509 weekly downloads. As such, @neo4j/graphql popularity was classified as popular.
We found that @neo4j/graphql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.