Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
data-graph-lib
Advanced tools
Provides a graph layer over different data sources. Data retrieval is handled by query and field resolvers. Queries are can retrieve a graph over multiple data sources and pick required fields.
This library provides a graph layer over different data sources. The data retrieval is handled by query resolver and field level resolvers. Queries are can retrieve a graph over multiple data sources and pick required fields.
# Using pnpm
pnpm add data-graph-lib
# Using yarn
yarn add data-graph-lib
# Using npm
npm install data-graph-lib
import { GraphQLService, QueryType } from "./lib";
import Zod from "zod";
const postComment = Zod.object({
id: Zod.string(),
text: Zod.string(),
postId: Zod.string(),
});
const postType = Zod.object({
id: Zod.string(),
title: Zod.string(),
comments: Zod.optional(Zod.array(postComment))
});
interface Schema {
post: Zod.infer<typeof postType>;
comment: Zod.infer<typeof postComment>;
}
const postData: Record<string, Zod.infer<typeof postType>> = {
'1': {
id: '1',
title: 'Post 1',
},
};
const commentData: Record<string, Zod.infer<typeof postComment>> = {
'1': {
id: '1',
text: 'Comment 1',
postId: '1',
},
'2': {
id: '2',
text: 'Comment 1',
postId: '1',
}
};
function resolvePost(args: { id: string }): Zod.infer<typeof postType> | null {
return postData[args.id] || null;
}
function resolvePostComments(post: Zod.infer<typeof postType>): Zod.infer<typeof postComment>[] | null {
return Object.values(commentData).filter(comment => comment.postId === post.id);
}
const service = new GraphQLService<Schema>();
service.registerQuery('post', resolvePost)
// @ts-ignore
service.registerResolver('post', 'comments', 'comment',resolvePostComments);
const query: QueryType<Schema> = {
type: "post",
args: { id: '1' },
fields: {
'id': true,
'title': true,
'comments': {
type: 'comment',
manipulate: (comments)=>comments.map(c=>c.text.toUpperCase()),
fields: {
id: true,
text: true,
},
},
},
};
const selectedPost = await service.executeQuery<'post'>(query);
console.log('selectedPost',selectedPost);
/*
{
__type: "post",
comments: [
{
__type: "comment",
id: "1",
text: "Comment 1",
}
],
id: "1",
title: "Post 1",
}
*/
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
Distributed under the "bsd-2-clause" License. See LICENSE.txt for more information.
FAQs
Provides a graph layer over different data sources. Data retrieval is handled by query and field resolvers. Queries are can retrieve a graph over multiple data sources and pick required fields.
The npm package data-graph-lib receives a total of 0 weekly downloads. As such, data-graph-lib popularity was classified as not popular.
We found that data-graph-lib demonstrated a healthy version release cadence and project activity because the last version was released less than 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.